Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-2283/Ad-blocker-off-by-default-in-Dawn #693

Closed
wants to merge 10 commits into from

Ensure that onboarding code does not switch ad block on by default

  • Loading branch information
wlycdgr committed Feb 19, 2021
commit 7cfefe1e05282c590274d21d235b2a5bcc43e216
@@ -78,9 +78,9 @@ class OnboardingViewContainer extends Component {
origin: ONBOARDING
});
actions.setBlockingPolicy({ blockingPolicy: BLOCKING_POLICY_RECOMMENDED });
actions.setAntiTracking({ enable_anti_tracking: true }); // covered
actions.setAdBlock({ enable_ad_block: true }); // covered
actions.setSmartBlocking({ enable_smart_block: true }); // covered
actions.setAntiTracking({ enable_anti_tracking: true });
actions.setAdBlock({ enable_ad_block: false }); // GH-2283
actions.setSmartBlocking({ enable_smart_block: true });
}
}

ProTip! Use n and p to navigate between commits in a pull request.