refactor: split connection_service into connection_service and browser_service in go

refactor: split connectionStore into connectionStore and browserStore in js
This commit is contained in:
tiny-craft
2023-11-05 11:57:52 +08:00
parent 44df1d5800
commit e28d091500
33 changed files with 2994 additions and 2951 deletions

View File

@@ -14,7 +14,7 @@ func containsBinary(str string) bool {
//}
rs := []rune(str)
for _, r := range rs {
if !unicode.IsPrint(r) {
if !unicode.IsPrint(r) && r != '\n' {
return true
}
}