mirror of
https://github.com/go-gitea/gitea
synced 2025-07-19 16:58:37 +00:00
#2185 fall back to use custom chardet lib
This commit is contained in:
@@ -130,8 +130,10 @@ func Sha1(str string) string {
|
||||
}
|
||||
|
||||
func ToUtf8WithErr(content []byte) (error, string) {
|
||||
charsetLabel := base.DetectEncoding(content)
|
||||
if charsetLabel == "utf-8" {
|
||||
charsetLabel, err := base.DetectEncoding(content)
|
||||
if err != nil {
|
||||
return err, ""
|
||||
} else if charsetLabel == "UTF-8" {
|
||||
return nil, string(content)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user