From 54d96c79b5b9f3d5d47aed59729ae779968fbecb Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 23 Jul 2019 20:50:39 +0200 Subject: Removed unnecessary conversions (#7557) No need to convert to the same type. --- modules/repofiles/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/repofiles/update.go') 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) -- cgit v1.2.3