merge upstream, improve geoip pkg

This commit is contained in:
uubulb
2024-10-31 03:34:25 +08:00
7 changed files with 31 additions and 42 deletions

View File

@@ -212,10 +212,9 @@ func (s *NezhaHandler) LookupGeoIP(c context.Context, r *pb.GeoIP) (*pb.GeoIP, e
}
// 根据内置数据库查询 IP 地理位置
record := &geoip.IPInfo{}
ip := r.GetIp()
netIP := net.ParseIP(ip)
location, err := geoip.Lookup(netIP, record)
location, err := geoip.Lookup(netIP)
if err != nil {
return nil, err
}