will exempt_masqr work this time
This commit is contained in:
parent
18540bf5c9
commit
a4efd90c0d
1 changed files with 3 additions and 1 deletions
4
index.js
4
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=";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue