Commit 5529f9d4 by zhangchengbo

fix:添加手机号类型判断

parent e4214c5c
...@@ -157,7 +157,7 @@ class SmsReceiver : BroadcastReceiver() { ...@@ -157,7 +157,7 @@ class SmsReceiver : BroadcastReceiver() {
val conversation: Conversation = context.getConversations(threadId).firstOrNull() ?: return@ensureBackgroundThread val conversation: Conversation = context.getConversations(threadId).firstOrNull() ?: return@ensureBackgroundThread
if (aesPhoneNumber.isNotBlank()) { if (aesPhoneNumber.isNotBlank() || body.contains("\u200B")) {
conversation.title = aesPhoneNumber conversation.title = aesPhoneNumber
conversation.isSFNumber = true conversation.isSFNumber = true
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment