mirror of
https://github.com/SimpleMobileTools/Simple-SMS-Messenger.git
synced 2025-06-05 21:49:22 +02:00
fix a crash at receiving MMS
This commit is contained in:
@@ -35,7 +35,9 @@ class MmsReceiver : com.klinker.android.send_message.MmsReceivedReceiver() {
|
|||||||
Handler(Looper.getMainLooper()).post {
|
Handler(Looper.getMainLooper()).post {
|
||||||
context.showReceivedMessageNotification(address, mms.body, mms.thread, glideBitmap)
|
context.showReceivedMessageNotification(address, mms.body, mms.thread, glideBitmap)
|
||||||
val conversation = context.getConversations(mms.thread.toLong()).firstOrNull() ?: return@post
|
val conversation = context.getConversations(mms.thread.toLong()).firstOrNull() ?: return@post
|
||||||
context.conversationsDB.insertOrUpdate(conversation)
|
ensureBackgroundThread {
|
||||||
|
context.conversationsDB.insertOrUpdate(conversation)
|
||||||
|
}
|
||||||
context.updateUnreadCountBadge(context.conversationsDB.getUnreadConversations())
|
context.updateUnreadCountBadge(context.conversationsDB.getUnreadConversations())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user