Merge pull request #236 from AkkiaS7/master [skip ci]
update: 未获取到country code时继续查询下一个API
This commit is contained in:
commit
7495366391
@ -102,6 +102,10 @@ func fetchGeoIP(servers []string, isV6 bool) geoIP {
|
|||||||
if !isV6 && !strings.Contains(ip.IP, ".") {
|
if !isV6 && !strings.Contains(ip.IP, ".") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
// 未获取到国家码
|
||||||
|
if ip.CountryCode == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
return ip
|
return ip
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user