From 6c9f14fc31a5ab46a9a68b74efca9a7fad2eb6d7 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Tue, 10 Dec 2019 00:20:44 -0800 Subject: [PATCH] fix makeAttachmentPointer to make 3 parameter optional --- libtextsecure/sendmessage.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libtextsecure/sendmessage.js b/libtextsecure/sendmessage.js index 0a71ec302..65e1a4966 100644 --- a/libtextsecure/sendmessage.js +++ b/libtextsecure/sendmessage.js @@ -193,11 +193,8 @@ MessageSender.prototype = { constructor: MessageSender, // makeAttachmentPointer :: Attachment -> Promise AttachmentPointerProto - async makeAttachmentPointer( - attachment, - publicServer = null, - { isRaw = false, isAvatar = false } - ) { + async makeAttachmentPointer(attachment, publicServer = null, options = {}) { + const { isRaw = false, isAvatar = false } = options; if (typeof attachment !== 'object' || attachment == null) { return Promise.resolve(undefined); }