catch exceptions thrown at updating conversations
This commit is contained in:
parent
2e0d6a877d
commit
6415b52b24
1 changed files with 4 additions and 1 deletions
|
|
@ -236,7 +236,10 @@ class MainActivity : SimpleActivity() {
|
||||||
conversations_list.adapter = this
|
conversations_list.adapter = this
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
try {
|
||||||
(currAdapter as ConversationsAdapter).updateConversations(conversations)
|
(currAdapter as ConversationsAdapter).updateConversations(conversations)
|
||||||
|
} catch (ignored: Exception) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue