mirror of
https://github.com/SimpleMobileTools/Simple-SMS-Messenger.git
synced 2025-02-03 02:37:32 +01:00
catch exceptions thrown at updating conversations
This commit is contained in:
parent
2e0d6a877d
commit
6415b52b24
@ -236,7 +236,10 @@ class MainActivity : SimpleActivity() {
|
||||
conversations_list.adapter = this
|
||||
}
|
||||
} else {
|
||||
(currAdapter as ConversationsAdapter).updateConversations(conversations)
|
||||
try {
|
||||
(currAdapter as ConversationsAdapter).updateConversations(conversations)
|
||||
} catch (ignored: Exception) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user