tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit f9eb64b2d14e6eef8a2fc1bc3bb3ea3f0f83d47f
parent 81045bb958ec759eddab3ebd67841cb036b22282
Author: Mike Conley <mconley@mozilla.com>
Date:   Thu, 11 Dec 2025 17:44:19 +0000

Bug 2005545 - Communicate with MARS over OHTTP by default in Nightly. r=home-newtab-reviewers,nbarrett

This enables communications with MARS over OHTTP from New Tab by default on Nightly.

Differential Revision: https://phabricator.services.mozilla.com/D276011

Diffstat:
Mbrowser/app/profile/firefox.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js @@ -1861,7 +1861,11 @@ pref("browser.newtabpage.activity-stream.unifiedAds.tiles.enabled", true); pref("browser.newtabpage.activity-stream.unifiedAds.spocs.enabled", true); pref("browser.newtabpage.activity-stream.unifiedAds.endpoint", "https://ads.mozilla.org/"); pref("browser.newtabpage.activity-stream.unifiedAds.adsFeed.enabled", false); +#ifdef NIGHTLY_BUILD +pref("browser.newtabpage.activity-stream.unifiedAds.ohttp.enabled", true); +#else pref("browser.newtabpage.activity-stream.unifiedAds.ohttp.enabled", false); +#endif // Weather widget for newtab pref("browser.newtabpage.activity-stream.showWeather", true);