diff options
Diffstat (limited to 'modules/repofiles/update.go')
-rw-r--r-- | modules/repofiles/update.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/repofiles/update.go b/modules/repofiles/update.go index f011017a5e..38f2f22c95 100644 --- a/modules/repofiles/update.go +++ b/modules/repofiles/update.go @@ -317,7 +317,7 @@ func CreateOrUpdateRepoFile(repo *models.Repository, doer *models.User, opts *Up if encoding != "UTF-8" { charsetEncoding, _ := charset.Lookup(encoding) if charsetEncoding != nil { - result, _, err := transform.String(charsetEncoding.NewEncoder(), string(content)) + result, _, err := transform.String(charsetEncoding.NewEncoder(), content) if err != nil { // Look if we can't encode back in to the original we should just stick with utf-8 log.Error("Error re-encoding %s (%s) as %s - will stay as UTF-8: %v", opts.TreePath, opts.FromTreePath, encoding, err) |