From 314b76388f2770e7a2e31f3c541891098b738901 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 25 Oct 2021 17:24:37 +1100 Subject: [PATCH] WIP --- preload.js | 3 +-- ts/interactions/conversations/unsendingInteractions.ts | 7 +++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/preload.js b/preload.js index 1fa7cf90c..bfaa25609 100644 --- a/preload.js +++ b/preload.js @@ -43,8 +43,7 @@ window.lokiFeatureFlags = { useFileOnionRequestsV2: true, // more compact encoding of files in response padOutgoingAttachments: true, enablePinConversations: true, - useUnsendRequests: true, - useCallMessage: false, + useCallMessage: true, }; window.isBeforeVersion = (toCheck, baseVersion) => { diff --git a/ts/interactions/conversations/unsendingInteractions.ts b/ts/interactions/conversations/unsendingInteractions.ts index 414e2a7c6..9f75148a5 100644 --- a/ts/interactions/conversations/unsendingInteractions.ts +++ b/ts/interactions/conversations/unsendingInteractions.ts @@ -42,6 +42,13 @@ async function unsendMessagesForEveryone( .catch(window?.log?.error) ) ); + await Promise.all( + unsendMsgObjects.map(unsendObject => + getMessageQueue() + .sendSyncMessage(unsendObject) + .catch(window?.log?.error) + ) + ); allDeleted = await deleteMessagesFromSwarmAndCompletelyLocally(conversation, msgsToDelete); } else if (conversation.isClosedGroup()) { // sending to recipient all the messages separately for now