mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-19 16:50:56 +00:00
Fix for GeodataMode
This commit is contained in:
parent
088fdb2ddd
commit
c49cede02b
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ func (gf *geoipFilter) Match(ip netip.Addr) bool {
|
|||
return false
|
||||
}
|
||||
}
|
||||
return !geoIPMatcher.Match(ip)
|
||||
return !geoIPMatcher.Match(ip) && !nnip.IsPrivateIP(ip)
|
||||
}
|
||||
|
||||
type ipnetFilter struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue