Fix incoming group updates showing as updated.
This commit is contained in:
parent
5fa1560a10
commit
6383896a79
1 changed files with 2 additions and 1 deletions
|
@ -2491,7 +2491,8 @@ open class MessageTable(context: Context?, databaseHelper: SignalDatabase) : Dat
|
|||
SERVER_GUID to retrieved.serverGuid,
|
||||
LATEST_REVISION_ID to null,
|
||||
ORIGINAL_MESSAGE_ID to editedMessage?.getOriginalOrOwnMessageId()?.id,
|
||||
REVISION_NUMBER to (editedMessage?.revisionNumber?.inc() ?: 0)
|
||||
REVISION_NUMBER to (editedMessage?.revisionNumber?.inc() ?: 0),
|
||||
MESSAGE_EXTRAS to (retrieved.messageExtras?.encode())
|
||||
)
|
||||
|
||||
val quoteAttachments: MutableList<Attachment> = mutableListOf()
|
||||
|
|
Loading…
Add table
Reference in a new issue