From 7a83b30490c8da3e575b64a3f00ef647b0210e92 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Wed, 26 May 2021 07:42:59 +1000 Subject: [PATCH] update service deps and jslib (#308) --- jslib | 2 +- src/bw.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jslib b/jslib index ba1a40af4e..395ded02aa 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit ba1a40af4e93c78b3312a1167e7cc16729910069 +Subproject commit 395ded02aa70211f8d334a7bd314e6c8c25e06d7 diff --git a/src/bw.ts b/src/bw.ts index c03db46b14..5bf7f747af 100644 --- a/src/bw.ts +++ b/src/bw.ts @@ -146,8 +146,9 @@ export class Main { this.policyService); this.totpService = new TotpService(this.storageService, this.cryptoFunctionService); this.importService = new ImportService(this.cipherService, this.folderService, this.apiService, - this.i18nService, this.collectionService, this.platformUtilsService); - this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService); + this.i18nService, this.collectionService, this.platformUtilsService, this.cryptoService); + this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService, + this.cryptoService); this.authService = new AuthService(this.cryptoService, this.apiService, this.userService, this.tokenService, this.appIdService, this.i18nService, this.platformUtilsService, this.messagingService, this.vaultTimeoutService, this.logService, true);