diff --git a/src/app/accounts/settings.component.ts b/src/app/accounts/settings.component.ts index 1c804958..3e71f53c 100644 --- a/src/app/accounts/settings.component.ts +++ b/src/app/accounts/settings.component.ts @@ -49,8 +49,11 @@ export class SettingsComponent implements OnInit { async ngOnInit() { this.lockOption = await this.storageService.get(ConstantsService.lockOptionKey); - this.disableGa = await this.storageService.get(ConstantsService.disableGaKey); this.disableFavicons = await this.storageService.get(ConstantsService.disableFaviconKey); + + const disableGa = await this.storageService.get(ConstantsService.disableGaKey); + const disableGaByDefault = this.platformUtilsService.isFirefox() || this.platformUtilsService.isMacAppStore(); + this.disableGa = disableGa || (disableGa == null && disableGaByDefault); } async saveLockOption() {