diff --git a/libs/common/src/vault/services/cipher.service.ts b/libs/common/src/vault/services/cipher.service.ts index bc4fb7819e3..2fe59fde39f 100644 --- a/libs/common/src/vault/services/cipher.service.ts +++ b/libs/common/src/vault/services/cipher.service.ts @@ -995,7 +995,7 @@ export class CipherService implements CipherServiceAbstraction { } else { const encrypted = await this.encrypt(cipherView, userId); const updatedCipher = await this.updateWithServer_legacy(encrypted, orgAdmin); - const updatedCipherView = this.decrypt(updatedCipher, userId); + const updatedCipherView = await this.decrypt(updatedCipher, userId); return updatedCipherView; } }