Update Reject Keywords

This commit is contained in:
SukkaW
2022-10-29 00:22:12 +08:00
parent 07dbcca3e9
commit 9e124e864e
2 changed files with 17 additions and 1 deletions

View File

@@ -192,7 +192,7 @@ const threads = isCI ? cpuCount : cpuCount / 2;
let isTobeRemoved = false;
for (const keyword of domainKeywordsSet) {
if (domain.includes(keyword) || keyword.includes(domain)) {
if (domain.includes(keyword)) {
isTobeRemoved = true;
break;
}