From 7255facdc2f2a053375b8b1c5afc53bd45343c9a Mon Sep 17 00:00:00 2001 From: Nik Gilmore Date: Tue, 13 Jan 2026 16:06:33 -0800 Subject: [PATCH] Add missing 'await' to decrypt call --- libs/common/src/vault/services/cipher.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }