1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-04 19:35:48 +02:00

Removed checks for locked vault from collectPageDetails

This commit is contained in:
Daniel James Smith 2021-09-30 15:47:33 +02:00
parent 1619fe533e
commit 889bbf8e2f
No known key found for this signature in database
GPG Key ID: 03E4BD365FF06726
2 changed files with 0 additions and 7 deletions

View File

@ -374,10 +374,6 @@ export default class MainBackground {
return;
}
if (await this.vaultTimeoutService.isLocked()) {
return;
}
const options: any = {};
if (frameId != null) {
options.frameId = frameId;

View File

@ -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);