From 0c9ec9e635cbf9acb0af61e529bcc709c7fd85b4 Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Thu, 13 May 2021 10:51:07 +1000 Subject: [PATCH] update service deps --- src/background/main.background.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/background/main.background.ts b/src/background/main.background.ts index 5f63542781..02dca56342 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -220,7 +220,8 @@ export default class MainBackground { this.eventService); this.containerService = new ContainerService(this.cryptoService); this.auditService = new AuditService(this.cryptoFunctionService, this.apiService); - this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService); + this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService, + this.cryptoService); this.notificationsService = new NotificationsService(this.userService, this.syncService, this.appIdService, this.apiService, this.vaultTimeoutService, () => this.logout(true), this.consoleLogService); this.environmentService = new EnvironmentService(this.apiService, this.storageService,