[PM-7660] Master Password Re-Prompt from Autofill Not Working (#8862)
This commit is contained in:
parent
fb211c5fee
commit
29d4f1aad5
|
@ -1105,20 +1105,22 @@ export default class MainBackground {
|
||||||
await (this.eventUploadService as EventUploadService).init(true);
|
await (this.eventUploadService as EventUploadService).init(true);
|
||||||
this.twoFactorService.init();
|
this.twoFactorService.init();
|
||||||
|
|
||||||
if (!this.popupOnlyContext) {
|
if (this.popupOnlyContext) {
|
||||||
await this.vaultTimeoutService.init(true);
|
return;
|
||||||
this.fido2Background.init();
|
}
|
||||||
await this.runtimeBackground.init();
|
|
||||||
await this.notificationBackground.init();
|
await this.vaultTimeoutService.init(true);
|
||||||
this.filelessImporterBackground.init();
|
this.fido2Background.init();
|
||||||
await this.commandsBackground.init();
|
await this.runtimeBackground.init();
|
||||||
await this.overlayBackground.init();
|
await this.notificationBackground.init();
|
||||||
await this.tabsBackground.init();
|
this.filelessImporterBackground.init();
|
||||||
this.contextMenusBackground?.init();
|
await this.commandsBackground.init();
|
||||||
await this.idleBackground.init();
|
await this.overlayBackground.init();
|
||||||
if (BrowserApi.isManifestVersion(2)) {
|
await this.tabsBackground.init();
|
||||||
await this.webRequestBackground.init();
|
this.contextMenusBackground?.init();
|
||||||
}
|
await this.idleBackground.init();
|
||||||
|
if (BrowserApi.isManifestVersion(2)) {
|
||||||
|
await this.webRequestBackground.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.platformUtilsService.isFirefox() && !this.isPrivateMode) {
|
if (this.platformUtilsService.isFirefox() && !this.isPrivateMode) {
|
||||||
|
|
Loading…
Reference in New Issue