修正联系人信息提示语法问题。

This commit is contained in:
ZhanGSKen
2025-03-19 11:08:12 +08:00
parent 35c639e7c9
commit 80c00a86b0
2 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ public class ContactUtils {
public String getContactsName(String phone) {
String result = contactMap.get(formatToSimplePhoneNumber(phone));
return result == null ? "[NoInContacts]" : result;
return result == null ? "[NotInContacts]" : result;
}
// static String getSimplePhone(String phone) {