From c4e13f8817d1139cf03ddf2588d4dfe340db3424 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 7 Jul 2018 23:51:35 -0400 Subject: [PATCH] api service to audit service --- jslib | 2 +- src/background/main.background.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 91081d9232..8ac3450d9e 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 91081d92327da22ab3be88a60f8b71be26933370 +Subproject commit 8ac3450d9eee10c54bc35dd931a70bf82f97d0a5 diff --git a/src/background/main.background.ts b/src/background/main.background.ts index f34e29b403..92c7fa8ea3 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -147,7 +147,7 @@ export default class MainBackground { this.autofillService = new AutofillService(this.cipherService, this.tokenService, this.totpService); this.containerService = new ContainerService(this.cryptoService, this.platformUtilsService); - this.auditService = new AuditService(cryptoFunctionService); + this.auditService = new AuditService(cryptoFunctionService, this.apiService); this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService); this.analytics = new Analytics(window, () => BrowserApi.gaFilter(), this.platformUtilsService, this.storageService, this.appIdService);