fix: geosite of nameserver-policy cannot be loaded correctly

This commit is contained in:
gVisor bot 2023-03-18 22:33:39 +08:00
parent 97f3524eb9
commit 7673f52431

View File

@ -92,6 +92,10 @@ type geoSiteFilter struct {
}
func NewGeoSite(group string) (fallbackDomainFilter, error) {
if err := geodata.InitGeoSite(); err != nil {
log.Errorln("can't initial GeoSite: %s", err)
return nil, err
}
matcher, _, err := geodata.LoadGeoSiteMatcher(group)
if err != nil {
return nil, err