mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-09-20 05:30:25 +02:00
2b34aeea5d
Signed-off-by: Leah Rowe <leah@libreboot.org>
26 lines
916 B
Diff
26 lines
916 B
Diff
From 8533ae5958adc2514498427967a2bcd97fa1506a Mon Sep 17 00:00:00 2001
|
|
From: LibreWolf Developers <noreply@librewolf.net>
|
|
Date: Sun, 6 Sep 2026 10:09:51 +0100
|
|
Subject: [PATCH 12/52] extensions-setUninstallURL.patch
|
|
|
|
---
|
|
toolkit/components/extensions/parent/ext-runtime.js | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/toolkit/components/extensions/parent/ext-runtime.js b/toolkit/components/extensions/parent/ext-runtime.js
|
|
index abc30a2e1319..22f03e99a871 100644
|
|
--- a/toolkit/components/extensions/parent/ext-runtime.js
|
|
+++ b/toolkit/components/extensions/parent/ext-runtime.js
|
|
@@ -354,7 +354,7 @@ this.runtime = class extends ExtensionAPIPersistent {
|
|
},
|
|
|
|
setUninstallURL: function (url) {
|
|
- if (url === null || url.length === 0) {
|
|
+ if (true) {
|
|
extension.uninstallURL = null;
|
|
return Promise.resolve();
|
|
}
|
|
--
|
|
2.47.3
|
|
|