Browse Source

Fix downloading document that cannot be played

master
morethanwords 3 years ago
parent
commit
dc8c6fd185
  1. 2
      src/components/wrappers.ts

2
src/components/wrappers.ts

@ -675,7 +675,7 @@ export function wrapDocument({message, withTime, fontWeight, voiceAsMusic, showS
window.open(url); window.open(url);
}, rootScope.settings.animationsEnabled ? 250 : 0); }, rootScope.settings.animationsEnabled ? 250 : 0);
}); });
} else if(MEDIA_MIME_TYPES_SUPPORTED.has(doc.mime_type)) { } else if(MEDIA_MIME_TYPES_SUPPORTED.has(doc.mime_type) && doc.thumbs?.length) {
download = appDocsManager.downloadDoc(doc, queueId); download = appDocsManager.downloadDoc(doc, queueId);
} else { } else {
download = appDocsManager.saveDocFile(doc, queueId); download = appDocsManager.saveDocFile(doc, queueId);

Loading…
Cancel
Save