mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
Removed checks for locked vault from collectPageDetails
This commit is contained in:
@@ -374,10 +374,6 @@ export default class MainBackground {
|
||||
return;
|
||||
}
|
||||
|
||||
if (await this.vaultTimeoutService.isLocked()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const options: any = {};
|
||||
if (frameId != null) {
|
||||
options.frameId = frameId;
|
||||
|
||||
@@ -126,9 +126,6 @@ export default class RuntimeBackground {
|
||||
await this.main.reseedStorage();
|
||||
break;
|
||||
case 'collectPageDetailsResponse':
|
||||
if (await this.vaultTimeoutService.isLocked()) {
|
||||
return;
|
||||
}
|
||||
switch (msg.sender) {
|
||||
case 'notificationBar':
|
||||
const forms = this.autofillService.getFormsWithPasswordFields(msg.details);
|
||||
|
||||
Reference in New Issue
Block a user