From 592d1f010f08a2b4de74a0af0f76f96dbf67ec27 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 6 Sep 2023 14:40:01 +1000 Subject: [PATCH] fix: use network time for emoji reacts syncing --- ts/models/conversation.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/models/conversation.ts b/ts/models/conversation.ts index 3d4eceaf3..90df9cc4b 100644 --- a/ts/models/conversation.ts +++ b/ts/models/conversation.ts @@ -530,7 +530,8 @@ export class ConversationModel extends Backbone.Model { // an OpenGroupV2 message is just a visible message const chatMessageParams: VisibleMessageParams = { body: '', - timestamp: sentAt, + // we need to use a new timestamp here, otherwise android&iOS will consider this message as a duplicate and drop the synced reaction + timestamp: GetNetworkTime.getNowWithNetworkOffset(), reaction, lokiProfile: UserUtils.getOurProfile(), };