Skip to content
Snippets Groups Projects
Verified Commit 6f004c7d authored by Alex Catarineu's avatar Alex Catarineu Committed by Pier Angelo Vendrame
Browse files

Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots

parent badd81bd
No related branches found
No related tags found
1 merge request!609Bug 41687: Rebased alpha to 102.10
......@@ -1248,6 +1248,20 @@ BrowserGlue.prototype = {
// handle any UI migration
this._migrateUI();
// Clear possibly auto enabled enterprise_roots prefs (see bug 40166)
if (
!Services.prefs.getBoolPref(
"security.certerrors.mitm.auto_enable_enterprise_roots"
) &&
Services.prefs.getBoolPref(
"security.enterprise_roots.auto-enabled",
false
)
) {
Services.prefs.clearUserPref("security.enterprise_roots.enabled");
Services.prefs.clearUserPref("security.enterprise_roots.auto-enabled");
}
if (!Services.prefs.prefHasUserValue(PREF_PDFJS_ISDEFAULT_CACHE_STATE)) {
PdfJs.checkIsDefault(this._isNewProfile);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment