diff --git a/src/background/notification.background.ts b/src/background/notification.background.ts index bd8d0115aa..90311f4e73 100644 --- a/src/background/notification.background.ts +++ b/src/background/notification.background.ts @@ -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; } @@ -206,7 +210,7 @@ export default class NotificationBackground { return; } - if (!(await this.allowPersonalOwnership())) { + if (!await this.allowPersonalOwnership()) { return; }