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 991e7b0 commit 1a23315Copy full SHA for 1a23315
app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/ContactsHelper.kt
@@ -740,7 +740,7 @@ class ContactsHelper(val context: Context) {
740
}
741
742
val nickname = getNicknames(id)[id] ?: ""
743
- val photoUri = cursor.getStringValue(Phone.PHOTO_URI) ?: ""
+ val photoUri = cursor.getStringValueOrNull(Phone.PHOTO_URI) ?: ""
744
val number = getPhoneNumbers(id)[id] ?: ArrayList()
745
val emails = getEmails(id)[id] ?: ArrayList()
746
val addresses = getAddresses(id)[id] ?: ArrayList()
0 commit comments