1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 03:33:30 +00:00

Add missing 'await' to decrypt call

This commit is contained in:
Nik Gilmore
2026-01-13 16:06:33 -08:00
parent 455a945b41
commit 7255facdc2

View File

@@ -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;
}
}