diff --git a/app/hub/Views/SetupView/SetupViewContainer.jsx b/app/hub/Views/SetupView/SetupViewContainer.jsx index 3434aafb2..0902c1ae7 100644 --- a/app/hub/Views/SetupView/SetupViewContainer.jsx +++ b/app/hub/Views/SetupView/SetupViewContainer.jsx @@ -104,7 +104,7 @@ class SetupViewContainer extends Component { this.props.actions.setAntiTracking({ enable_anti_tracking: true }); this.props.actions.setAdBlock({ enable_ad_block: true }); this.props.actions.setSmartBlocking({ enable_smart_block: true }); - this.props.actions.setGhosteryRewards({ enable_ghostery_rewards: true }); + this.props.actions.setGhosteryRewards({ enable_ghostery_rewards: !IS_FIREFOX }); this.props.actions.setHumanWeb({ enable_human_web: !IS_FIREFOX }); } diff --git a/src/background.js b/src/background.js index d78c53eef..158e8b2ef 100644 --- a/src/background.js +++ b/src/background.js @@ -1759,7 +1759,7 @@ function initializeGhosteryModules() { conf.enable_ad_block = !adblocker.isDisabled; conf.enable_anti_tracking = !antitracking.isDisabled; conf.enable_human_web = !humanweb.isDisabled && !(IS_FIREFOX && globals.JUST_INSTALLED); - conf.enable_offers = !offers.isDisabled; + conf.enable_offers = !offers.isDisabled && !(IS_FIREFOX && globals.JUST_INSTALLED); } } }); diff --git a/src/classes/ConfData.js b/src/classes/ConfData.js index c4e262ae7..62cc1f016 100644 --- a/src/classes/ConfData.js +++ b/src/classes/ConfData.js @@ -107,7 +107,7 @@ class ConfData { _initProperty('enable_click2play_social', true); _initProperty('enable_human_web', !IS_CLIQZ && !IS_FIREFOX); _initProperty('enable_metrics', false); - _initProperty('enable_offers', !IS_CLIQZ); + _initProperty('enable_offers', !IS_CLIQZ && !IS_FIREFOX); _initProperty('enable_smart_block', true); _initProperty('expand_all_trackers', true); _initProperty('hide_alert_trusted', false);