Browse Source

Fix IP rule with custom GeoIP file

b0edbec53e
pull/2141/head
Kslr 6 years ago
parent
commit
09075e62fd
  1. 2
      infra/conf/router.go

2
infra/conf/router.go

@ -323,7 +323,7 @@ func toCidrList(ips StringList) ([]*router.GeoIP, error) {
filename := kv[0] filename := kv[0]
country := kv[1] country := kv[1]
geoip, err := loadGeoIP(strings.ToUpper(country)) geoip, err := loadIP(filename, strings.ToUpper(country))
if err != nil { if err != nil {
return nil, newError("failed to load IPs: ", country, " from ", filename).Base(err) return nil, newError("failed to load IPs: ", country, " from ", filename).Base(err)
} }

Loading…
Cancel
Save