chore: Skip initial "lan" rules that load geoip
This commit is contained in:
parent
6b6921f090
commit
6484ba4d44
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ func (g *GEOIP) GetRecodeSize() int {
|
|||
}
|
||||
|
||||
func NewGEOIP(country string, adapter string, noResolveIP bool) (*GEOIP, error) {
|
||||
if !C.GeodataMode {
|
||||
if !C.GeodataMode || strings.EqualFold(country, "LAN") {
|
||||
geoip := &GEOIP{
|
||||
Base: &Base{},
|
||||
country: country,
|
||||
|
|
Loading…
Reference in a new issue