From 51e5ded36b439d620cf0b7305234fca1867f6759 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 25 Jun 2021 10:57:51 +1000 Subject: [PATCH] auto download attachment in closed group --- ts/models/message.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ts/models/message.ts b/ts/models/message.ts index 16033c514..d86455acb 100644 --- a/ts/models/message.ts +++ b/ts/models/message.ts @@ -1113,13 +1113,14 @@ export class MessageModel extends Backbone.Model { } public isTrustedForAttachmentDownload() { - const convoId = this.getSource(); - if (!!this.get('isPublic') || isUsFromCache(convoId)) { + const senderConvoId = this.getSource(); + const isClosedGroup = this.getConversation()?.isClosedGroup() || false; + if (!!this.get('isPublic') || isClosedGroup || isUsFromCache(senderConvoId)) { return true; } // check the convo from this user // we want the convo of the sender of this message - const senderConvo = getConversationController().get(convoId); + const senderConvo = getConversationController().get(senderConvoId); if (!senderConvo) { return false; }