remove the mms attachments after sending the message

This commit is contained in:
tibbi 2020-04-13 11:03:22 +02:00
parent 2166a5bbe2
commit 2b01622533
1 changed files with 3 additions and 0 deletions

View File

@ -403,6 +403,9 @@ class ThreadActivity : SimpleActivity() {
message.addMedia(byteArray, mimeType)
}
transaction.sendNewMessage(message, threadId.toLong())
attachmentUris.clear()
thread_attachments_holder.beGone()
thread_attachments_wrapper.removeAllViews()
}
}