mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-21 15:05:19 +00:00
Moving the heavy lifting code in a coroutine to help with ANRs
This commit is contained in:
parent
d044f12d3f
commit
d0d7626db4
@ -1785,10 +1785,21 @@ class ConversationActivityV2 : PassphraseRequiredActionBarActivity(), InputBarDe
|
|||||||
attachmentManager.clear()
|
attachmentManager.clear()
|
||||||
// Reset attachments button if needed
|
// Reset attachments button if needed
|
||||||
if (isShowingAttachmentOptions) { toggleAttachmentOptions() }
|
if (isShowingAttachmentOptions) { toggleAttachmentOptions() }
|
||||||
// Put the message in the database
|
|
||||||
message.id = mmsDb.insertMessageOutbox(outgoingTextMessage, viewModel.threadId, false, null, runThreadUpdate = true)
|
// do the heavy work in the bg
|
||||||
// Send it
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
MessageSender.send(message, recipient.address, attachments, quote, linkPreview)
|
// Put the message in the database
|
||||||
|
message.id = mmsDb.insertMessageOutbox(
|
||||||
|
outgoingTextMessage,
|
||||||
|
viewModel.threadId,
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
runThreadUpdate = true
|
||||||
|
)
|
||||||
|
// Send it
|
||||||
|
MessageSender.send(message, recipient.address, attachments, quote, linkPreview)
|
||||||
|
}
|
||||||
|
|
||||||
// Send a typing stopped message
|
// Send a typing stopped message
|
||||||
ApplicationContext.getInstance(this).typingStatusSender.onTypingStopped(viewModel.threadId)
|
ApplicationContext.getInstance(this).typingStatusSender.onTypingStopped(viewModel.threadId)
|
||||||
return Pair(recipient.address, sentTimestamp)
|
return Pair(recipient.address, sentTimestamp)
|
||||||
|
Loading…
Reference in New Issue
Block a user