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) => {
|
||||
if (attachment.key == null) {
|
||||
attachmentPromises.push(this.shareAttachmentWithServer(attachment, cipher.id, organizationId));
|
||||
}
|
||||
});
|
||||
}
|
||||
await Promise.all(attachmentPromises);
|
||||
|
|
Loading…
Reference in New Issue