This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser.
commit 2debb2470dbcac4cb1c5ca5ee05a1491fd089ea1 Author: Dan Ballard dan@mindstab.net AuthorDate: Mon Oct 17 21:03:02 2022 -0700
fixup! Firefox preference overrides.
bug #41125: lock network.proxy.allow_bypass as there is no reason to allow it to be changed --- browser/app/profile/001-base-profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/browser/app/profile/001-base-profile.js b/browser/app/profile/001-base-profile.js index c6b088434b79..0dec75fe4f59 100644 --- a/browser/app/profile/001-base-profile.js +++ b/browser/app/profile/001-base-profile.js @@ -252,7 +252,7 @@ pref("network.protocol-handler.warn-external.mailto", true); pref("network.protocol-handler.warn-external.news", true); pref("network.protocol-handler.warn-external.nntp", true); pref("network.protocol-handler.warn-external.snews", true); -pref("network.proxy.allow_bypass", false); // #40682 +pref("network.proxy.allow_bypass", false, locked); // #40682 // Lock to 'true', which is already the firefox default, to prevent users // from making themselves fingerprintable by disabling. This pref // alters content load order in a page. See tor-browser#24686