From 06ec65fb10db118fbd4380f7700ad27e8cdc7857 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 19 Mar 2019 15:54:13 -0400 Subject: [PATCH] update jslib --- jslib | 2 +- src/app/services/services.module.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index d8f9177c03..fc1a73c9f2 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit d8f9177c03549667cf6d1e5f30536d010acc7b7d +Subproject commit fc1a73c9f2ef2c18f05dfebb5cf80ce84520d118 diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index f1b5b3921b..9c152ae17a 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -104,7 +104,7 @@ const folderService = new FolderService(cryptoService, userService, apiService, const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService); searchService = new SearchService(cipherService, platformUtilsService); const lockService = new LockService(cipherService, folderService, collectionService, - cryptoService, platformUtilsService, storageService, messagingService, searchService, null); + cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, null); const syncService = new SyncService(userService, apiService, settingsService, folderService, cipherService, cryptoService, collectionService, storageService, messagingService, async (expired: boolean) => messagingService.send('logout', { expired: expired }));