From a711ae1c49ed3b99fd26d0829d9bf07f433a135c Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 7 Oct 2022 15:11:13 -0700 Subject: [PATCH] Don't include expireTimer with reaction sends --- ts/jobs/helpers/sendReaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/jobs/helpers/sendReaction.ts b/ts/jobs/helpers/sendReaction.ts index e161613d47..6f8da8ec73 100644 --- a/ts/jobs/helpers/sendReaction.ts +++ b/ts/jobs/helpers/sendReaction.ts @@ -105,6 +105,7 @@ export async function sendReaction( return; } + const expireTimer = messageConversation.get('expireTimer'); const { allRecipientIdentifiers, recipientIdentifiersWithoutMe, @@ -123,7 +124,6 @@ export async function sendReaction( ); } - const expireTimer = message.get('expireTimer'); const profileKey = conversation.get('profileSharing') ? await ourProfileKeyService.get() : undefined;