From a4efd90c0d91dacc553e5f9f7e6409b0ea715f20 Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Tue, 19 Nov 2024 21:08:47 -0600 Subject: [PATCH] will exempt_masqr work this time --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 943df1d..d90737d 100644 --- a/index.js +++ b/index.js @@ -23,7 +23,9 @@ const whiteListedDomains = ["aluu.xyz", "localhost"]; if (existsSync("exempt_masqr.txt")) { const file = readFileSync("exempt_masqr.txt", "utf-8"); const exemptDomains = file.split("\n"); - whiteListedDomains.push(...exemptDomains); + exemptDomains.forEach((domain) => { + whiteListedDomains.push(domain.trim()); + }) } const LICENSE_SERVER_URL = "https://license.mercurywork.shop/validate?license=";