mirror of
https://github.com/Nezumi-2711/cloudflare-gateway-pihole-scripts.git
synced 2026-09-22 13:38:37 +00:00
console log whitelist: ${domain} - removing
This commit is contained in:
+5
-1
@@ -90,7 +90,11 @@ fs.readFile('input.csv', 'utf8', async (err, data) => {
|
|||||||
|
|
||||||
// Remove domains from the domains array that are present in the whitelist array
|
// Remove domains from the domains array that are present in the whitelist array
|
||||||
domains = domains.filter(domain => {
|
domains = domains.filter(domain => {
|
||||||
return !whitelist.includes(domain);
|
if (whitelist.includes(domain)) {
|
||||||
|
console.warn(`Domain found in the whitelist: ${domain} - removing`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
// Trim array to 300,000 domains if it's longer than that
|
// Trim array to 300,000 domains if it's longer than that
|
||||||
|
|||||||
Reference in New Issue
Block a user