deploy: 7a7a97e4d0e6d439388daacd6b6334509203bfed

This commit is contained in:
SukkaBot
2022-09-12 15:51:48 +00:00
parent 921a217a48
commit cdcfa043ab
2 changed files with 5 additions and 4 deletions

View File

@@ -13,13 +13,14 @@ module.exports = ({ chunk }) => {
const domainFromInput = chunk[i];
for (let j = 0; j < len; j++) {
const domainFromFullSet = workerData[j];
if (domainFromFullSet === domainFromInput) continue;
// Check if domainFromFullset starts with a "."
if (!fullsetDomainStartsWithADot[j]) continue;
// domainFromFullSet is now startsWith a "."
const domainFromFullSet = workerData[j];
if (domainFromFullSet === domainFromInput) continue;
const domainFromInputLen = domainFromInput.length;
if (domainFromInput.charCodeAt(0) !== 46) {