Merge pull request #1721 from Bilb/fix-click-to-trust

fix click to trust only dling file received
pull/1720/head
Audric Ackermann 4 years ago committed by GitHub
commit cc6951e4c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -408,7 +408,7 @@
"linkVisitWarningTitle": "Open this link in your browser?", "linkVisitWarningTitle": "Open this link in your browser?",
"linkVisitWarningMessage": "Are you sure you want to open $url$ in your browser?", "linkVisitWarningMessage": "Are you sure you want to open $url$ in your browser?",
"open": "Open", "open": "Open",
"clickToTrustContact": "Tap to download media", "clickToTrustContact": "Click to download media",
"trustThisContactDialogTitle": "Trust $name$?", "trustThisContactDialogTitle": "Trust $name$?",
"trustThisContactDialogDescription": "Are you sure you want to download media sent by $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( await Promise.all(
messagesInConvo.map(async message => { messagesInConvo.map(async message => {
const msgAttachments = message.get('attachments'); const msgAttachments = message.get('attachments');
if (message.get('direction') !== 'incoming') {
return;
}
if (!msgAttachments || msgAttachments.length === 0) { if (!msgAttachments || msgAttachments.length === 0) {
return; return;
} }

Loading…
Cancel
Save