We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec064e commit 8e8a5d3Copy full SHA for 8e8a5d3
app/src/main/kotlin/com/simplemobiletools/contacts/pro/models/Contact.kt
@@ -130,6 +130,7 @@ data class Contact(
130
}
131
132
fun getStringToCompare(): String {
133
+ val photoToUse = if (isPrivate()) null else photo
134
return copy(
135
id = 0,
136
prefix = "",
@@ -147,7 +148,7 @@ data class Contact(
147
148
starred = 0,
149
contactId = 0,
150
thumbnailUri = "",
- photo = null,
151
+ photo = photoToUse,
152
notes = "",
153
groups = ArrayList(),
154
websites = ArrayList(),
0 commit comments