catching some exceptions
This commit is contained in:
parent
3b1ee82835
commit
de54a88b2d
2 changed files with 10 additions and 4 deletions
|
|
@ -188,8 +188,11 @@ class ThreadActivity : SimpleActivity() {
|
|||
it.phoneNumbers.contains(it.name)
|
||||
}
|
||||
|
||||
if (participants.isNotEmpty() && messages.hashCode() == cachedMessagesCode && !hasParticipantWithoutName) {
|
||||
return@ensureBackgroundThread
|
||||
try {
|
||||
if (participants.isNotEmpty() && messages.hashCode() == cachedMessagesCode && !hasParticipantWithoutName) {
|
||||
return@ensureBackgroundThread
|
||||
}
|
||||
} catch (ignored: Exception) {
|
||||
}
|
||||
|
||||
setupParticipants()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue