From 27a72b8eef6f1527f1e6b3c712f643c530044c6f Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 23 Dec 2024 09:57:57 -0500 Subject: [PATCH] [mv3] Hopefully this fixes Edge submission issue Submission to Edge Addons store fails with: ---- The following checks failed: Package acceptance validation error: Manifest file reference 'urlhaus.full' does not exist in the zip archive. (Note: File locations are case-sensitive) Package acceptance validation error: Manifest file reference 'openphish.domains' does not exist in the zip archive. (Note: File locations are case-sensitive) ---- Guessing the use of period in ruleset file path is causing the issue. --- platform/mv3/make-rulesets.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/mv3/make-rulesets.js b/platform/mv3/make-rulesets.js index 0e527f413..2d9c2d380 100644 --- a/platform/mv3/make-rulesets.js +++ b/platform/mv3/make-rulesets.js @@ -1287,7 +1287,7 @@ async function main() { // Handpicked rulesets from abroad await rulesetFromURLs({ - id: 'urlhaus.full', + id: 'urlhaus-full', name: 'Malicious URL Blocklist', group: 'malware', enabled: true, @@ -1299,7 +1299,7 @@ async function main() { homeURL: 'https://gitlab.com/malware-filter/urlhaus-filter', }); await rulesetFromURLs({ - id: 'openphish.domains', + id: 'openphish-domains', name: 'OpenPhish Domain Blocklist', group: 'malware', enabled: true,