Fix group updates from others showing before messages made before the update.

This commit is contained in:
Cody Henthorne
2026-02-11 13:49:29 -05:00
committed by Michelle Tang
parent 611b52780e
commit dd396eb75a
3 changed files with 7 additions and 3 deletions

View File

@@ -648,7 +648,11 @@ class GroupsV2StateProcessor private constructor(
}
else -> {
storeMessage(GroupProtoUtil.createDecryptedGroupV2Context(masterKey, GroupMutation(runningGroupState, entry.change, entry.group), null), runningTimestamp, serverGuid)
storeMessage(
decryptedGroupV2Context = GroupProtoUtil.createDecryptedGroupV2Context(masterKey, GroupMutation(runningGroupState, entry.change, entry.group), null),
timestamp = runningTimestamp,
serverGuid = serverGuid
)
runningTimestamp++
}
}