ソースを参照

Feat: AdGuardHome with DOMAIN-KEYWORD supports

SukkaW 1 年間 前
コミット
bbe92a1b95
1 ファイル変更5 行追加0 行削除
  1. 5 0
      Build/lib/rules/domainset.ts

+ 5 - 0
Build/lib/rules/domainset.ts

@@ -123,6 +123,11 @@ export class DomainsetOutput extends RuleOutput<Preprocessed> {
       }
     }
 
+    for (const keyword of this.domainKeywords) {
+      // Use regex to match keyword
+      results.push(`/${keyword}/`);
+    }
+
     return results;
   }
 }