Skip to content

Commit d30e69d

Browse files
committed
fix: nickhider not work for "extra" text field
1 parent 671c9ee commit d30e69d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/net/apple70cents/chattools/utils/TextUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ private static boolean isProtectedField(String key) {
325325
}
326326

327327
private static boolean isTextField(String key) {
328-
return key.contains("text") || key.contains("value");
328+
return key.contains("text") || key.contains("value") || key.contains("extra");
329329
}
330330

331331
private static boolean isColorField(String key) {

0 commit comments

Comments
 (0)