From f14c4261705c98118515fb702749eb72e56875a7 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 16 Jul 2021 14:27:48 -0700 Subject: [PATCH] ConversationView: Call forceSend with proper signature --- ts/views/conversation_view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/views/conversation_view.ts b/ts/views/conversation_view.ts index e5a69978f1..ae8d20e0da 100644 --- a/ts/views/conversation_view.ts +++ b/ts/views/conversation_view.ts @@ -823,7 +823,7 @@ Whisper.ConversationView = Whisper.View.extend({ this.downloadNewVersion(); }; const sendAnyway = (contactId: string, messageId: string) => { - this.forceSend(contactId, messageId); + this.forceSend({ contactId, messageId }); }; const showSafetyNumber = (contactId: string) => { this.showSafetyNumber(contactId);