passing new service into WindowMain constructor

This commit is contained in:
CarleyDiaz-Bitwarden 2022-04-27 17:46:31 -04:00
parent 55b301c267
commit caf5cb0504
2 changed files with 4 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 6bcadc4f408db2c150753f53a07d6f8888b6e9ff
Subproject commit 4dfe08fb1ccebc1d96931227750ead5fc678295e

View File

@ -94,8 +94,10 @@ export class Main {
undefined,
undefined,
(arg) => this.processDeepLink(arg),
(win) => this.trayMain.setupWindowListeners(win)
(win) => this.trayMain.setupWindowListeners(win),
this.messagingService
);
this.messagingMain = new MessagingMain(this, this.stateService);
this.updaterMain = new UpdaterMain(
this.i18nService,