mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
no key safety check for orgs
This commit is contained in:
parent
773c51901f
commit
2d612b07de
@ -134,6 +134,9 @@ export class CipherService implements CipherServiceAbstraction {
|
|||||||
|
|
||||||
if (key == null && cipher.organizationId != null) {
|
if (key == null && cipher.organizationId != null) {
|
||||||
key = await this.cryptoService.getOrgKey(cipher.organizationId);
|
key = await this.cryptoService.getOrgKey(cipher.organizationId);
|
||||||
|
if (key == null) {
|
||||||
|
throw new Error('Cannot encrypt cipher for organization. No key.');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
this.encryptObjProperty(model, cipher, {
|
this.encryptObjProperty(model, cipher, {
|
||||||
|
Loading…
Reference in New Issue
Block a user