This commit is contained in:
kunfei 2022-01-28 21:26:15 +08:00
parent c37d597b08
commit 6478ad5509

View File

@ -496,7 +496,7 @@ interface JsExtensions {
correctQueryTTF: QueryTTF?
): String {
if (errorQueryTTF == null || correctQueryTTF == null) return text
val contentArray = text.toStringArray()
val contentArray = text.toStringArray() //这里不能用toCharArray,因为有些文字占多个字节
contentArray.forEachIndexed { index, s ->
val oldCode = s.codePointAt(0)
if (errorQueryTTF.inLimit(oldCode)) {