修复过滤无效节点的bug

This commit is contained in:
Peng-YM
2020-09-01 00:39:15 +08:00
parent 089b36c4fe
commit af0baba727
3 changed files with 38 additions and 41 deletions

View File

@@ -1650,7 +1650,10 @@ function UselessFilter() {
const KEYWORDS = ["网址", "流量", "时间", "应急", "过期", "Bandwidth", "expire"];
return {
name: "Useless Filter",
func: DiscardKeywordFilter(KEYWORDS).func
func: KeywordFilter({
keywords: KEYWORDS,
keep: false
}).func
}
}