From 68096c1f12edc1b28f837d9a6c188c1b0f7b39d7 Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Thu, 13 May 2021 10:53:38 +1000 Subject: [PATCH] update service deps --- src/app/services.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services.module.ts b/src/app/services.module.ts index 97edd4d281..04836c7fef 100644 --- a/src/app/services.module.ts +++ b/src/app/services.module.ts @@ -127,7 +127,7 @@ const totpService = new TotpService(storageService, cryptoFunctionService); const containerService = new ContainerService(cryptoService); const authService = new AuthService(cryptoService, apiService, userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService, vaultTimeoutService, logService); -const exportService = new ExportService(folderService, cipherService, apiService); +const exportService = new ExportService(folderService, cipherService, apiService, cryptoService); const auditService = new AuditService(cryptoFunctionService, apiService); const notificationsService = new NotificationsService(userService, syncService, appIdService, apiService, vaultTimeoutService, async () => messagingService.send('logout', { expired: true }), logService);