Merge pull request #236 from AkkiaS7/master [skip ci]

update: 未获取到country code时继续查询下一个API
This commit is contained in:
naiba 2022-07-05 23:44:53 +08:00 committed by GitHub
commit 7495366391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,6 +102,10 @@ func fetchGeoIP(servers []string, isV6 bool) geoIP {
if !isV6 && !strings.Contains(ip.IP, ".") {
continue
}
// 未获取到国家码
if ip.CountryCode == "" {
continue
}
return ip
}
}