mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-29 00:29:05 +08:00
#2185 fall back to use custom chardet lib
This commit is contained in:
@ -246,8 +246,8 @@ func ParsePatch(maxlines int, reader io.Reader) (*Diff, error) {
|
||||
buf.WriteString("\n")
|
||||
}
|
||||
}
|
||||
charsetLabel := base.DetectEncoding(buf.Bytes())
|
||||
if charsetLabel != "UTF-8" {
|
||||
charsetLabel, err := base.DetectEncoding(buf.Bytes())
|
||||
if charsetLabel != "UTF-8" && err == nil {
|
||||
encoding, _ := charset.Lookup(charsetLabel)
|
||||
if encoding != nil {
|
||||
d := encoding.NewDecoder()
|
||||
|
Reference in New Issue
Block a user