1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-15 02:18:42 +02:00

update jslib

This commit is contained in:
Kyle Spearrin 2019-03-19 15:54:13 -04:00
parent 371ecd9d3a
commit 06ec65fb10
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit d8f9177c03549667cf6d1e5f30536d010acc7b7d
Subproject commit fc1a73c9f2ef2c18f05dfebb5cf80ce84520d118

View File

@ -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 }));