mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 06:03:34 +03:00
fix: MaxMind MMDB code character case
This commit is contained in:
parent
90d0ef033b
commit
7754b46dc4
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ package mmdb
|
|||
import (
|
||||
"fmt"
|
||||
"net"
|
||||
"strings"
|
||||
|
||||
"github.com/oschwald/maxminddb-golang"
|
||||
)
|
||||
|
@ -26,7 +27,7 @@ func (r Reader) LookupCode(ipAddress net.IP) []string {
|
|||
if country.Country.IsoCode == "" {
|
||||
return []string{}
|
||||
}
|
||||
return []string{country.Country.IsoCode}
|
||||
return []string{strings.ToLower(country.Country.IsoCode)}
|
||||
|
||||
case typeSing:
|
||||
var code string
|
||||
|
|
Loading…
Add table
Reference in a new issue