1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 21:50:15 +00:00

Fix null active account

This commit is contained in:
Matt Gibson
2023-09-28 17:56:07 -04:00
committed by Justin Baur
parent 3d2cfa952f
commit 932e4b3707

View File

@@ -49,6 +49,7 @@ export class AccountServiceImplementation implements InternalAccountService {
if (userId == null) {
// indicates no account is active
this.activeAccountId.next(undefined);
return;
}
if (this.accounts.value[userId] == null) {