commit 690541a980d308d359a699c81ccdc224599607b0 Author: Matthew Finkel sysrqb@torproject.org Date: Fri Apr 30 23:50:13 2021 +0000
squash! TB4: Tor Browser's Firefox preference overrides.
Bug 40423: Disable http/3 --- browser/app/profile/000-tor-browser.js | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index 76ee3a4aa1e1..ea1aaa704e8b 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -275,6 +275,8 @@ pref("network.connectivity-service.enabled", false); // As a "defense in depth" measure, configure an empty push server URL (the // DOM Push features are disabled by default via other prefs). pref("dom.push.serverURL", ""); +// Bug 40423: Disable http/3 +pref("network.http.http3.enabled", false);
// Extension support pref("extensions.autoDisableScopes", 0);
tbb-commits@lists.torproject.org