mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 07:53:14 +08:00
Fixed: Does RuleSet resolve ip logic modification
This commit is contained in:
parent
8df3efe932
commit
833b43a538
@ -126,7 +126,6 @@ func NewRuleSetProvider(name string, behavior P.RuleType, interval time.Duration
|
||||
return err
|
||||
}
|
||||
|
||||
rp.shouldResolveIP = false
|
||||
rp.setRules(rules)
|
||||
return nil
|
||||
}
|
||||
@ -242,5 +241,6 @@ func (rp *ruleSetProvider) setRules(rules interface{}) {
|
||||
rp.IPCIDRRules = rules.(*trie.IpCidrTrie)
|
||||
rp.shouldResolveIP = true
|
||||
default:
|
||||
rp.shouldResolveIP = false
|
||||
}
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ func (rs *RuleSet) Payload() string {
|
||||
}
|
||||
|
||||
func (rs *RuleSet) ShouldResolveIP() bool {
|
||||
return rs.getProviders().Behavior() != P.Domain
|
||||
return rs.getProviders().ShouldResolveIP()
|
||||
}
|
||||
func (rs *RuleSet) getProviders() P.RuleProvider {
|
||||
if rs.ruleProvider == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user