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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user