Removed checks for locked vault from collectPageDetails
This commit is contained in:
parent
1619fe533e
commit
889bbf8e2f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue