mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
only use shareAttachmentWithServer for old attachments
This commit is contained in:
parent
f514e2bb67
commit
be080f4f17
@ -467,7 +467,9 @@ export class CipherService implements CipherServiceAbstraction {
|
||||
const attachmentPromises: Array<Promise<any>> = [];
|
||||
if (cipher.attachments != null) {
|
||||
cipher.attachments.forEach((attachment) => {
|
||||
attachmentPromises.push(this.shareAttachmentWithServer(attachment, cipher.id, organizationId));
|
||||
if (attachment.key == null) {
|
||||
attachmentPromises.push(this.shareAttachmentWithServer(attachment, cipher.id, organizationId));
|
||||
}
|
||||
});
|
||||
}
|
||||
await Promise.all(attachmentPromises);
|
||||
|
Loading…
Reference in New Issue
Block a user