When vault is locked also check for personal ownership policy

This commit is contained in:
Daniel James Smith 2021-10-29 18:50:55 +02:00
parent ad1653ec3f
commit 9d79bae1c8
No known key found for this signature in database
GPG Key ID: 03E4BD365FF06726
1 changed files with 4 additions and 0 deletions

View File

@ -192,6 +192,10 @@ export default class NotificationBackground {
}
if (await this.vaultTimeoutService.isLocked()) {
if (!(await this.allowPersonalOwnership())) {
return;
}
this.pushAddLoginToQueue(loginDomain, loginInfo, tab, true);
return;
}