chore: Skip initial "lan" rules that load geoip

This commit is contained in:
metacubex 2022-08-17 00:33:03 +08:00 committed by Skyxim
parent 835cab58cf
commit 4b39362039

View File

@ -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,