mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-03 08:49:50 +01:00
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (await this.vaultTimeoutService.isLocked()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const options: any = {};
|
const options: any = {};
|
||||||
if (frameId != null) {
|
if (frameId != null) {
|
||||||
options.frameId = frameId;
|
options.frameId = frameId;
|
||||||
|
@ -126,9 +126,6 @@ export default class RuntimeBackground {
|
|||||||
await this.main.reseedStorage();
|
await this.main.reseedStorage();
|
||||||
break;
|
break;
|
||||||
case 'collectPageDetailsResponse':
|
case 'collectPageDetailsResponse':
|
||||||
if (await this.vaultTimeoutService.isLocked()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
switch (msg.sender) {
|
switch (msg.sender) {
|
||||||
case 'notificationBar':
|
case 'notificationBar':
|
||||||
const forms = this.autofillService.getFormsWithPasswordFields(msg.details);
|
const forms = this.autofillService.getFormsWithPasswordFields(msg.details);
|
||||||
|
Loading…
Reference in New Issue
Block a user