From 0e5de1a914d724823f6414ea3fbcf2ff806710c4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 13 Jan 2018 10:30:40 -0500 Subject: [PATCH] never domain is any --- src/background/runtime.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background/runtime.background.ts b/src/background/runtime.background.ts index 8773014477..6b36c030e0 100644 --- a/src/background/runtime.background.ts +++ b/src/background/runtime.background.ts @@ -268,7 +268,7 @@ export default class RuntimeBackground { private async getDataForTab(tab: any, responseCommand: string) { const responseVal: any = {}; if (responseCommand === 'notificationBarDataResponse') { - responseVal.neverDomains = await this.storageService.get(ConstantsService.neverDomainsKey); + responseVal.neverDomains = await this.storageService.get(ConstantsService.neverDomainsKey); responseVal.disabledNotification = await this.storageService.get( ConstantsService.disableAddLoginNotificationKey); } else if (responseCommand === 'autofillerAutofillOnPageLoadEnabledResponse') {