diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:39:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:39:18 +0000 |
commit | 353bc139ab36792cf8199d4ad06ee655f1d0ce13 (patch) | |
tree | 985e5b2434e3111cc12983a19e107d7122ace1ce /browser/components/enterprisepolicies/Policies.sys.mjs | |
parent | Adding upstream version 115.10.0esr. (diff) | |
download | firefox-esr-353bc139ab36792cf8199d4ad06ee655f1d0ce13.tar.xz firefox-esr-353bc139ab36792cf8199d4ad06ee655f1d0ce13.zip |
Adding upstream version 115.11.0esr.upstream/115.11.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/enterprisepolicies/Policies.sys.mjs')
-rw-r--r-- | browser/components/enterprisepolicies/Policies.sys.mjs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/browser/components/enterprisepolicies/Policies.sys.mjs b/browser/components/enterprisepolicies/Policies.sys.mjs index 8ad1349441..858c5ba7dc 100644 --- a/browser/components/enterprisepolicies/Policies.sys.mjs +++ b/browser/components/enterprisepolicies/Policies.sys.mjs @@ -1725,6 +1725,8 @@ export var Policies = { "places.", "pref.", "print.", + "privacy.userContext.enabled", + "privacy.userContext.ui.enabled", "signon.", "spellchecker.", "toolkit.legacyUserProfileCustomizations.stylesheets", @@ -1904,13 +1906,11 @@ export var Policies = { onBeforeAddons(manager, param) { if (param.Locked) { manager.disallowFeature("changeProxySettings"); - lazy.ProxyPolicies.configureProxySettings(param, setAndLockPref); - } else { - lazy.ProxyPolicies.configureProxySettings( - param, - PoliciesUtils.setDefaultPref - ); } + lazy.ProxyPolicies.configureProxySettings( + param, + PoliciesUtils.setDefaultPref + ); }, }, |