fix: 调整not规则判断子规则数量,逻辑规则返回payload采用解析后结果

This commit is contained in:
Skyxim
2022-05-29 19:54:11 +08:00
parent c7355510a2
commit 0e1601e5b6
3 changed files with 16 additions and 6 deletions

View File

@ -1,8 +1,10 @@
package logic
import (
"fmt"
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/rule/common"
"strings"
)
type AND struct {
@ -25,13 +27,17 @@ func NewAND(payload string, adapter string) (*AND, error) {
}
and.rules = rules
payloads := make([]string, 0, len(rules))
for _, rule := range rules {
payloads = append(payloads, fmt.Sprintf("(%s)", rule.Payload()))
if rule.ShouldResolveIP() {
and.needIP = true
break
}
}
and.payload = strings.Join(payloads, " && ")
return and, nil
}