will exempt_masqr work this time

This commit is contained in:
wearrrrr 2024-11-19 21:08:47 -06:00
parent 18540bf5c9
commit a4efd90c0d

View file

@ -23,7 +23,9 @@ const whiteListedDomains = ["aluu.xyz", "localhost"];
if (existsSync("exempt_masqr.txt")) { if (existsSync("exempt_masqr.txt")) {
const file = readFileSync("exempt_masqr.txt", "utf-8"); const file = readFileSync("exempt_masqr.txt", "utf-8");
const exemptDomains = file.split("\n"); 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="; const LICENSE_SERVER_URL = "https://license.mercurywork.shop/validate?license=";