ma1 pushed to branch base-browser-115.4.0esr-13.0-1 at The Tor Project / 
Applications / Tor Browser


Commits:
a78a919d by hackademix at 2023-10-20T15:45:50+02:00
fixup! Bug 40926: Implemented the New Identity feature

Bug 42182: avoid reloading any search engine extension.

- - - - -


1 changed file:

- browser/components/newidentity/content/newidentity.js


Changes:

=====================================
browser/components/newidentity/content/newidentity.js
=====================================
@@ -415,10 +415,13 @@ XPCOMUtils.defineLazyGetter(this, "NewIdentityButton", () 
=> {
     async reloadAddons() {
       logger.info("Reloading add-ons to clear their temporary state.");
       // Reload all active extensions except search engines, which would throw.
-      const addons = (
-        await AddonManager.getAddonsByTypes(["extension"])
-      ).filter(a => a.isActive && !a.id.endsWith("@search.mozilla.org"));
-      await Promise.all(addons.map(a => a.reload()));
+      const addons = await AddonManager.getAddonsByTypes(["extension"]);
+      const isSearchEngine = async addon =>
+        (await (await 
fetch(addon.getResourceURI("manifest.json").spec)).json())
+          ?.chrome_settings_overrides?.search_provider;
+      const reloadIfNeeded = async addon =>
+        addon.isActive && !(await isSearchEngine(addon)) && addon.reload();
+      await Promise.all(addons.map(addon => reloadIfNeeded(addon)));
     }
 
     // Broadcast as a hook to clear other data



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a78a919d4618cdcebb306d3c4b705f6d23d35081

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a78a919d4618cdcebb306d3c4b705f6d23d35081
You're receiving this email because of your account on gitlab.torproject.org.


_______________________________________________
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to