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 71d40b0 commit 2606456Copy full SHA for 2606456
app/src/main/kotlin/com/simplemobiletools/contacts/helpers/ContactsHelper.kt
@@ -117,6 +117,8 @@ class ContactsHelper(val activity: BaseSimpleActivity) {
117
phoneNumbers[id].add(phoneNumber)
118
} while (cursor.moveToNext())
119
}
120
+ } catch (e: Exception) {
121
+ activity.showErrorToast(e)
122
} finally {
123
cursor?.close()
124
@@ -151,6 +153,9 @@ class ContactsHelper(val activity: BaseSimpleActivity) {
151
153
emails[id]!!.add(Email(email, type))
152
154
155
156
+
157
158
159
160
161
0 commit comments