From 9e7adcb54cf849bc06ca3877e6f8a2b1201fce00 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:32:12 -0800 Subject: [PATCH] Fix generation of reaction ids Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> --- 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 cbfec342e..d723047f2 100644 --- a/ts/jobs/helpers/sendReaction.ts +++ b/ts/jobs/helpers/sendReaction.ts @@ -134,7 +134,7 @@ export async function sendReaction( }; const ephemeralMessageForReactionSend = new window.Whisper.Message({ - id: UUID.generate.toString(), + id: UUID.generate().toString(), type: 'outgoing', conversationId: conversation.get('id'), sent_at: pendingReaction.timestamp,