From fb6e85c56b68490c8450f6298f330166836cd6b5 Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Mon, 6 Apr 2020 13:07:09 -0500 Subject: [PATCH] Update jslib (28e3fff -> 72e3893) (#510) * Update jslib (28e3fff -> 72e3893) * Updated lock description, updated vaultTimeoutService init Co-authored-by: Vincent Salucci --- jslib | 2 +- src/app/services/services.module.ts | 4 ++-- src/locales/en/messages.json | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/jslib b/jslib index 28e3fff739..72e3893f8e 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 28e3fff739e64c2dd80d3d98717e2921895d16df +Subproject commit 72e3893f8eee79f1e3678839aa194f1096c343ea diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index e2f6f5bc61..c74261dd31 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -109,8 +109,8 @@ const collectionService = new CollectionService(cryptoService, userService, stor searchService = new SearchService(cipherService, platformUtilsService); const policyService = new PolicyService(userService, storageService); const vaultTimeoutService = new VaultTimeoutService(cipherService, folderService, collectionService, - cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, null, - async () => messagingService.send('logout', { expired: false })); + cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, tokenService, + null, async () => messagingService.send('logout', { expired: false })); const syncService = new SyncService(userService, apiService, settingsService, folderService, cipherService, cryptoService, collectionService, storageService, messagingService, policyService, async (expired: boolean) => messagingService.send('logout', { expired: expired })); diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index e52f424d82..c3251097d3 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -3051,6 +3051,7 @@ "message": "A logged out vault requires that you re-authenticate to access it again." }, "lock": { - "message": "Lock" + "message": "Lock", + "description": "Verb form: to make secure or inaccesible by" } }