1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-29 04:17:41 +02:00

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

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

2
jslib

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

View File

@ -220,7 +220,8 @@ export default class MainBackground {
this.eventService);
this.containerService = new ContainerService(this.cryptoService);
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService);
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService,
this.cryptoService);
this.notificationsService = new NotificationsService(this.userService, this.syncService, this.appIdService,
this.apiService, this.vaultTimeoutService, () => this.logout(true), this.consoleLogService);
this.environmentService = new EnvironmentService(this.apiService, this.storageService,