mirror of
https://github.com/SimpleMobileTools/Simple-Dialer.git
synced 2025-06-05 21:49:23 +02:00
fix #84, properly recognize private contact names at the call log
This commit is contained in:
@ -50,7 +50,7 @@ class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
|
|||||||
recents.filter { it.phoneNumber == it.name }.forEach { recent ->
|
recents.filter { it.phoneNumber == it.name }.forEach { recent ->
|
||||||
var wasNameFilled = false
|
var wasNameFilled = false
|
||||||
if (privateContacts.isNotEmpty()) {
|
if (privateContacts.isNotEmpty()) {
|
||||||
val privateContact = privateContacts.firstOrNull { it.phoneNumbers.first() == recent.phoneNumber }
|
val privateContact = privateContacts.firstOrNull { it.doesContainPhoneNumber(recent.phoneNumber) }
|
||||||
if (privateContact != null) {
|
if (privateContact != null) {
|
||||||
recent.name = privateContact.name
|
recent.name = privateContact.name
|
||||||
wasNameFilled = true
|
wasNameFilled = true
|
||||||
|
Reference in New Issue
Block a user