mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
null or undefined on GA check
This commit is contained in:
@@ -41,7 +41,7 @@ export class OptionsController {
|
||||
|
||||
const disableGa = await this.storageService.get<boolean>(
|
||||
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<boolean>(
|
||||
this.constantsService.disableAddLoginNotificationKey);
|
||||
|
||||
Reference in New Issue
Block a user