mirror of
https://github.com/SimpleMobileTools/Simple-SMS-Messenger.git
synced 2024-12-29 09:39:59 +01:00
fix wrong sender name from private contacts
- use SimpleContact.doesHavePhoneNumber to perform comparision between a sender and private contact. SimpleContact.doesHavePhoneNumber does equality check.
This commit is contained in:
parent
52ebeeedc6
commit
91d81e3bd8
@ -218,8 +218,8 @@ class ThreadActivity : SimpleActivity() {
|
||||
privateContacts = MyContactsContentProvider.getSimpleContacts(this, privateCursor)
|
||||
if (privateContacts.isNotEmpty()) {
|
||||
val senderNumbersToReplace = HashMap<String, String>()
|
||||
participants.filter { it.doesContainPhoneNumber(it.name) }.forEach { participant ->
|
||||
privateContacts.firstOrNull { it.doesContainPhoneNumber(participant.phoneNumbers.first()) }?.apply {
|
||||
participants.filter { it.doesHavePhoneNumber(it.name) }.forEach { participant ->
|
||||
privateContacts.firstOrNull { it.doesHavePhoneNumber(participant.phoneNumbers.first()) }?.apply {
|
||||
senderNumbersToReplace[participant.phoneNumbers.first()] = name
|
||||
participant.name = name
|
||||
participant.photoUri = photoUri
|
||||
|
@ -401,7 +401,7 @@ fun Context.getThreadContactNames(phoneNumbers: List<String>, privateContacts: A
|
||||
if (name != number) {
|
||||
names.add(name)
|
||||
} else {
|
||||
val privateContact = privateContacts.firstOrNull { it.doesContainPhoneNumber(number) }
|
||||
val privateContact = privateContacts.firstOrNull { it.doesHavePhoneNumber(number) }
|
||||
if (privateContact == null) {
|
||||
names.add(name)
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user