1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-29 12:55:21 +01:00

fix: getOrgKeys returning null

This commit is contained in:
Andreas Coroiu 2023-07-21 11:33:27 +02:00
parent 2f855dd37a
commit 04232fe94a
No known key found for this signature in database
GPG Key ID: E70B5FFC81DFEC1A

View File

@ -311,7 +311,7 @@ export class CryptoService implements CryptoServiceAbstraction {
const encOrgKeyData = await this.stateService.getEncryptedOrganizationKeys();
if (encOrgKeyData == null) {
return null;
return result;
}
let setKey = false;