fix stupid bug

This commit is contained in:
dervperson 2025-01-31 23:01:04 -05:00
parent 20f739177c
commit cb6b292bf6

View file

@ -46,7 +46,7 @@ async function urlCollector(url, path, file, useLimit, data2) {
return; return;
} }
for (let g of greylist) { for (let g of greylist) {
if (h2.toString().includes(g)) return; if (h2.toString().includes(g) && g != '') return;
} }
if (blacklist.indexOf(h2.toString()) != -1) return; if (blacklist.indexOf(h2.toString()) != -1) return;
urls.push(h2.toString()); urls.push(h2.toString());