mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-06-15 23:39:56 -04:00
Refine: geofile reading errors (#236)
This commit is contained in:
@@ -162,7 +162,7 @@ func loadIP(filename, country string) ([]*router.CIDR, error) {
|
||||
}
|
||||
}
|
||||
|
||||
return nil, newError("country not found: " + country)
|
||||
return nil, newError("country not found in ", filename, ": ", country)
|
||||
}
|
||||
|
||||
func loadSite(filename, country string) ([]*router.Domain, error) {
|
||||
@@ -181,7 +181,7 @@ func loadSite(filename, country string) ([]*router.Domain, error) {
|
||||
}
|
||||
}
|
||||
|
||||
return nil, newError("country not found: " + country)
|
||||
return nil, newError("list not found in ", filename, ": ", country)
|
||||
}
|
||||
|
||||
type AttributeMatcher interface {
|
||||
|
||||
Reference in New Issue
Block a user