fix: Thoth geoip compare (#1564)

Co-authored-by: Jason Cameron <git@jasoncameron.dev>
This commit is contained in:
Lenny
2026-04-24 16:37:19 +02:00
committed by GitHub
parent 1d700a0370
commit f8605bcd3c
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ func (c *Client) GeoIPCheckerFor(countries []string) checker.Impl {
var sb strings.Builder
fmt.Fprintln(&sb, "GeoIPChecker")
for _, cc := range countries {
countryMap[cc] = struct{}{}
countryMap[strings.ToLower(cc)] = struct{}{}
fmt.Fprintln(&sb, cc)
}