Fix typo for big-endian BOM

This commit is contained in:
Neil Alexander 2018-06-16 17:01:47 +01:00
parent 21b15c97a9
commit 9ac7d4e0df
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -117,7 +117,7 @@ func main() {
// of it - remove it and decode back down into UTF-8. This is necessary
// because hjson doesn't know what to do with UTF-16 and will panic
if bytes.Compare(config[0:2], []byte{0xFF, 0xFE}) == 0 ||
bytes.Compare(config[0:2], []byte{0xFF, 0xFF}) == 0 {
bytes.Compare(config[0:2], []byte{0xFE, 0xFF}) == 0 {
utf := unicode.UTF16(unicode.BigEndian, unicode.UseBOM)
decoder := utf.NewDecoder()
config, err = decoder.Bytes(config)