Skip to content

Commit

Permalink
[UI/Messages] Fix sending message not showing the message fragment.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba2k2 committed Feb 21, 2022
1 parent 6c50a80 commit 148597e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ class MessageManager(private val app: App) {
if (sentDate > 0L) {
it.addedDate = sentDate
}
withContext(Dispatchers.IO) {
it.recipients = app.db.messageRecipientDao().getAllByMessageId(profileId, it.id)
}
}
} else {
withContext(Dispatchers.IO) {
Expand Down

0 comments on commit 148597e

Please sign in to comment.