Allow explicit charset/codepage setting for ANSI source files to alleviate issue #1088
This commit is contained in:
parent
31f6069dbe
commit
53bcf373c1
2 changed files with 5 additions and 0 deletions
|
@ -55,6 +55,9 @@ func ShortSha(sha1 string) string {
|
|||
func DetectEncoding(content []byte) (string, error) {
|
||||
detector := chardet.NewTextDetector()
|
||||
result, err := detector.DetectBest(content)
|
||||
if result.Charset == "ISO-8859-1" {
|
||||
return setting.AnsiCharset, err
|
||||
}
|
||||
return result.Charset, err
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue