mirror of
https://github.com/SimpleMobileTools/Simple-SMS-Messenger.git
synced 2025-06-05 21:49:22 +02:00
catch exceptions thrown at updating conversations
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user