mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-21 11:35:34 +01:00
[PM-4660] Check size of orgKeys map instead of against null (#6776)
* Check size of orgKeys map for nullness * Add null check on orgKeys
This commit is contained in:
parent
c8bc7c62e9
commit
90e2779fab
@ -293,7 +293,7 @@ export class CipherService implements CipherServiceAbstraction {
|
|||||||
const ciphers = await this.getAll();
|
const ciphers = await this.getAll();
|
||||||
const orgKeys = await this.cryptoService.getOrgKeys();
|
const orgKeys = await this.cryptoService.getOrgKeys();
|
||||||
const userKey = await this.cryptoService.getUserKeyWithLegacySupport();
|
const userKey = await this.cryptoService.getUserKeyWithLegacySupport();
|
||||||
if (orgKeys == null && userKey == null) {
|
if (orgKeys?.size === 0 && userKey == null) {
|
||||||
// return early if there are no keys to decrypt with
|
// return early if there are no keys to decrypt with
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user