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

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

@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Wed Mar 19 08:51:20 HKT 2025 #Wed Mar 19 03:06:47 GMT 2025
stageCount=21 stageCount=21
libraryProject= libraryProject=
baseVersion=1.0 baseVersion=1.0
publishVersion=1.0.20 publishVersion=1.0.20
buildCount=0 buildCount=1
baseBetaVersion=1.0.21 baseBetaVersion=1.0.21

View File

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