fix(lint): fixing go static check failing.

This commit is contained in:
Houmgaor
2025-10-19 22:52:58 +02:00
parent fc6e479df9
commit c55f23442b
12 changed files with 28 additions and 36 deletions

View File

@@ -31,7 +31,7 @@ func SJISToUTF8(b []byte) string {
func ToNGWord(x string) []uint16 {
var w []uint16
for _, r := range []rune(x) {
for _, r := range x {
if r > 0xFF {
t := UTF8ToSJIS(string(r))
if len(t) > 1 {