From f35efbdd5ba9e092b300e8b36773ec151943ccd3 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 13 Feb 2019 21:58:16 -0500 Subject: [PATCH] fix deps --- src/app/services/services.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 90aad7dfe2..f1b5b3921b 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -116,7 +116,7 @@ const authService = new AuthService(cryptoService, apiService, const exportService = new ExportService(folderService, cipherService, apiService); const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService); const notificationsService = new NotificationsService(userService, syncService, appIdService, - apiService, cryptoService, async () => messagingService.send('logout', { expired: true })); + apiService, lockService, async () => messagingService.send('logout', { expired: true })); const environmentService = new EnvironmentService(apiService, storageService, notificationsService); const auditService = new AuditService(cryptoFunctionService, apiService);