From 0356836e63124f84870714fcae209e39a44c59ce Mon Sep 17 00:00:00 2001 From: oneflux Date: Mon, 21 Apr 2025 20:42:02 -0700 Subject: [PATCH] remove uBO bootstrap patch --- .../custom-ubo-assets-bootstrap-location.patch | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 patches/librewolf/custom-ubo-assets-bootstrap-location.patch diff --git a/patches/librewolf/custom-ubo-assets-bootstrap-location.patch b/patches/librewolf/custom-ubo-assets-bootstrap-location.patch deleted file mode 100644 index 68cc4e0..0000000 --- a/patches/librewolf/custom-ubo-assets-bootstrap-location.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/toolkit/components/extensions/parent/ext-storage.js -+++ b/toolkit/components/extensions/parent/ext-storage.js -@@ -177,6 +177,14 @@ this.storage = class extends ExtensionAPI { - - let data = await lookup; - if (!data) { -+ const assetsBootstrapLocation = Services.prefs.getStringPref("camoufox.uBO.assetsBootstrapLocation", undefined); -+ if (extension.id == "uBlock0@raymondhill.net" && assetsBootstrapLocation) { -+ return { -+ adminSettings: { -+ assetsBootstrapLocation -+ } -+ } -+ } - return Promise.reject({ - message: "Managed storage manifest not found", - });