fix click to trust only dling file received

pull/1721/head
Audric Ackermann 4 years ago
parent 712f76a53c
commit 29c29c5752
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -408,7 +408,7 @@
"linkVisitWarningTitle": "Open this link in your browser?",
"linkVisitWarningMessage": "Are you sure you want to open $url$ in your browser?",
"open": "Open",
"clickToTrustContact": "Tap to download media",
"clickToTrustContact": "Click to download media",
"trustThisContactDialogTitle": "Trust $name$?",
"trustThisContactDialogDescription": "Are you sure you want to download media sent by $name$?"
}

@ -49,6 +49,9 @@ export const ClickToTrustSender = (props: { messageId: string }) => {
await Promise.all(
messagesInConvo.map(async message => {
const msgAttachments = message.get('attachments');
if (message.get('direction') !== 'incoming') {
return;
}
if (!msgAttachments || msgAttachments.length === 0) {
return;
}

Loading…
Cancel
Save