mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
Fix: invert should resolve ip (#836)
This commit is contained in:
parent
6c5f23f552
commit
6532947e71
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ func handleTCPConn(localConn C.ServerAdapter) {
|
|||
}
|
||||
|
||||
func shouldResolveIP(rule C.Rule, metadata *C.Metadata) bool {
|
||||
return !rule.ShouldResolveIP() && metadata.Host != "" && metadata.DstIP == nil
|
||||
return rule.ShouldResolveIP() && metadata.Host != "" && metadata.DstIP == nil
|
||||
}
|
||||
|
||||
func match(metadata *C.Metadata) (C.Proxy, C.Rule, error) {
|
||||
|
|
Loading…
Add table
Reference in a new issue