From 8cc36056375466103f9bff295eb7c872014261f6 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Wed, 2 Mar 2022 15:39:51 -0800 Subject: [PATCH] Fix generation of reaction ids --- 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 49097192fc2..8e9e40bd558 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,