From 0643ca460c54ff59d7f5d4d4780c13abf16e56a2 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 5 Jul 2018 14:42:33 -0400 Subject: [PATCH] update jslib with export deps --- jslib | 2 +- src/bw.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 20622db73c5..87e273252be 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 20622db73c5c2a56777944bb06f32a21bf2e763f +Subproject commit 87e273252be42dab90d9a33857fe7755f378338b diff --git a/src/bw.ts b/src/bw.ts index 5ef3702e535..5a3f4844010 100644 --- a/src/bw.ts +++ b/src/bw.ts @@ -99,7 +99,7 @@ export class Main { this.storageService, this.messagingService, async (expired: boolean) => await this.logout()); this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService); this.totpService = new TotpService(this.storageService, this.cryptoFunctionService); - this.exportService = new ExportService(this.folderService, this.cipherService); + this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService); this.authService = new AuthService(this.cryptoService, this.apiService, this.userService, this.tokenService, this.appIdService, this.i18nService, this.platformUtilsService, this.messagingService, true); this.auditService = new AuditService(this.cryptoFunctionService);