fix: ToLower first
This commit is contained in:
parent
6cc12551da
commit
97f3524eb9
1 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@ func (p *path) MMDB() string {
|
||||||
// 目录则直接跳过
|
// 目录则直接跳过
|
||||||
continue
|
continue
|
||||||
} else {
|
} else {
|
||||||
if strings.EqualFold(fi.Name(), "Country.mmdb") {
|
if strings.EqualFold(strings.ToLower(fi.Name()), "country.mmdb") {
|
||||||
GeoipName = fi.Name()
|
GeoipName = fi.Name()
|
||||||
return P.Join(p.homeDir, fi.Name())
|
return P.Join(p.homeDir, fi.Name())
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@ func (p *path) GeoIP() string {
|
||||||
// 目录则直接跳过
|
// 目录则直接跳过
|
||||||
continue
|
continue
|
||||||
} else {
|
} else {
|
||||||
if strings.EqualFold(fi.Name(), "GeoIP.dat") {
|
if strings.EqualFold(strings.ToLower(fi.Name()), "geoip.dat") {
|
||||||
GeoipName = fi.Name()
|
GeoipName = fi.Name()
|
||||||
return P.Join(p.homeDir, fi.Name())
|
return P.Join(p.homeDir, fi.Name())
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ func (p *path) GeoSite() string {
|
||||||
// 目录则直接跳过
|
// 目录则直接跳过
|
||||||
continue
|
continue
|
||||||
} else {
|
} else {
|
||||||
if strings.EqualFold(fi.Name(), "GeoSite.dat") {
|
if strings.EqualFold(strings.ToLower(fi.Name()), "geosite.dat") {
|
||||||
GeositeName = fi.Name()
|
GeositeName = fi.Name()
|
||||||
return P.Join(p.homeDir, fi.Name())
|
return P.Join(p.homeDir, fi.Name())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue