feat: 调整规则参数

This commit is contained in:
xream
2024-02-28 22:33:06 +08:00
parent 56626dabc7
commit 23bc011306
3 changed files with 18 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ function AllRuleParser() {
rule.type === 'IP-CIDR' ||
rule.type === 'IP-CIDR6'
) {
rule.options = params.slice(2).join(",");
rule.options = params.slice(2);
}
result.push(rule);
}