commit f24fbd15e83a3ffe0b13f2c7a23553b8fb0c839e Author: Georg Koppen gk@torproject.org Date: Fri Oct 9 07:19:56 2020 +0000
squash! TB4: Tor Browser's Firefox preference overrides.
Bug 40140: Videos stop working with Tor Browser 10.0 on Windows --- browser/app/profile/000-tor-browser.js | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index bac98ce06540..0851f9ac84de 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -347,6 +347,13 @@ pref("browser.urlbar.update1.searchTips", false); // is only reported via telemetry (which is disabled). pref("corroborator.enabled", false);
+// Having the RDD Opus option enabled on Windows breaks videos for us. +// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1667360 and +// tor-browser#40140. +#ifdef XP_WIN +pref"media.rdd-opus.enabled", false); +#endif + // Onboarding. pref("browser.onboarding.tourset-version", 5); pref("browser.onboarding.newtour", "welcome,privacy,tor-network-9.0,circuit-display,security,expect-differences,onion-services,learn-more");
tbb-commits@lists.torproject.org