fix: make sure to save the attachment that is visible in the carousel

pull/3017/head
William Grant 1 year ago
parent 4727b7ee55
commit e76eee5329

@ -223,9 +223,8 @@ export const OverlayMessageInfo = () => {
conversationId: convoId,
messageSender: sender,
messageTimestamp: serverTimestamp || timestamp || Date.now(),
attachment: attachments[0],
// TODO what about multiple attachments?
index: 0,
attachment: attachments[visibleAttachmentIndex],
index: visibleAttachmentIndex,
});
}
}}

@ -1,6 +1,3 @@
/**
* @prettier
*/
export const saveURLAsFile = ({
filename,
url,

Loading…
Cancel
Save