Check for nullability

This commit is contained in:
Naveen 2022-08-29 03:45:22 +05:30
parent c51646d519
commit 317cb9b883
2 changed files with 12 additions and 4 deletions

View file

@ -367,8 +367,12 @@ class ThreadAdapter(
thread_mesage_attachments_holder.addView(vCardView)
parseVCardFromUri(context, uri) { vCards ->
val title = vCards.first().formattedName.value
val imageIcon = SimpleContactsHelper(context).getContactLetterIcon(title)
val title = vCards.firstOrNull()?.formattedName?.value
val imageIcon = if (title != null) {
SimpleContactsHelper(context).getContactLetterIcon(title)
} else {
null
}
activity.runOnUiThread {
vCardView.apply {
vcard_title.text = title