1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-28 12:35:40 +01:00

Merge pull request #892 from bitwarden/improve-import-error-checking

Bump jslib
This commit is contained in:
Thomas Rittson 2021-05-13 11:23:49 +10:00 committed by GitHub
commit 55b0118240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit ba1a40af4e93c78b3312a1167e7cc16729910069 Subproject commit 306aef73d459dfad8a7a06c32442c9ed2d56922e

View File

@ -127,7 +127,7 @@ const totpService = new TotpService(storageService, cryptoFunctionService);
const containerService = new ContainerService(cryptoService); const containerService = new ContainerService(cryptoService);
const authService = new AuthService(cryptoService, apiService, userService, tokenService, appIdService, const authService = new AuthService(cryptoService, apiService, userService, tokenService, appIdService,
i18nService, platformUtilsService, messagingService, vaultTimeoutService, logService); 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 auditService = new AuditService(cryptoFunctionService, apiService);
const notificationsService = new NotificationsService(userService, syncService, appIdService, const notificationsService = new NotificationsService(userService, syncService, appIdService,
apiService, vaultTimeoutService, async () => messagingService.send('logout', { expired: true }), logService); apiService, vaultTimeoutService, async () => messagingService.send('logout', { expired: true }), logService);