tor-browser

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

commit 419d22e9cae862e6e715f4edf4a5a8e8e44e5e4e
parent 8ef47a9dffa925190898da30c5846a01026bf12d
Author: Pier Angelo Vendrame <pierov@torproject.org>
Date:   Tue, 13 Aug 2024 19:21:09 +0200

BB 42774: Always hide the third-pary certs UI.

Diffstat:
Mbrowser/components/preferences/privacy.js | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/browser/components/preferences/privacy.js b/browser/components/preferences/privacy.js @@ -2387,7 +2387,8 @@ Preferences.addSetting({ return ( (AppConstants.platform == "win" || AppConstants.platform == "macosx") && typeof Services.policies.getActivePolicies()?.Certificates - ?.ImportEnterpriseRoots == "undefined" + ?.ImportEnterpriseRoots == "undefined" && + !AppConstants.BASE_BROWSER_VERSION ); }, });