From 63ef6e1e5beddd4dceba81876a5a663a1ec09bbf Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 27 Mar 2018 08:21:26 -0400 Subject: [PATCH] null or undefined on GA check --- src/popup/app/settings/options.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/app/settings/options.component.ts b/src/popup/app/settings/options.component.ts index 49c858ec6d..9f0e13194f 100644 --- a/src/popup/app/settings/options.component.ts +++ b/src/popup/app/settings/options.component.ts @@ -41,7 +41,7 @@ export class OptionsController { const disableGa = await this.storageService.get( this.constantsService.disableGaKey); - this.disableGa = disableGa || (this.platformUtilsService.isFirefox() && disableGa === undefined); + this.disableGa = disableGa || (this.platformUtilsService.isFirefox() && disableGa == null); this.disableAddLoginNotification = await this.storageService.get( this.constantsService.disableAddLoginNotificationKey);