catch and display exceptions thrown at querying contact sources

This commit is contained in:
tibbi 2018-03-02 12:08:11 +01:00
parent aef045f160
commit f37d7a0d10
1 changed files with 2 additions and 0 deletions

View File

@ -361,6 +361,8 @@ class ContactsHelper(val activity: BaseSimpleActivity) {
sources.add(contactSource)
} while (cursor.moveToNext())
}
} catch (e: Exception) {
activity.showErrorToast(e)
} finally {
cursor?.close()
}