1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

Bump jslib (#1776)

This commit is contained in:
Oscar Hinton
2021-04-07 20:43:07 +02:00
committed by GitHub
parent ae4c1b29d2
commit 97ac4a3267
5 changed files with 13 additions and 11 deletions

View File

@@ -126,7 +126,7 @@ export default class MainBackground {
analytics: Analytics;
popupUtilsService: PopupUtilsService;
sendService: SendServiceAbstraction;
fileUploadService: FileUploadServiceAbstraction
fileUploadService: FileUploadServiceAbstraction;
onUpdatedRan: boolean;
onReplacedRan: boolean;
@@ -190,7 +190,7 @@ export default class MainBackground {
this.storageService, this.i18nService, this.cipherService);
this.collectionService = new CollectionService(this.cryptoService, this.userService, this.storageService,
this.i18nService);
this.searchService = new SearchService(this.cipherService, this.consoleLogService);
this.searchService = new SearchService(this.cipherService, this.consoleLogService, this.i18nService);
this.sendService = new SendService(this.cryptoService, this.userService, this.apiService, this.fileUploadService,
this.storageService, this.i18nService, this.cryptoFunctionService);
this.stateService = new StateService();