Chat country flags: stop at first subdivision

face-detect
Noah Petherbridge 2023-08-17 18:47:52 -07:00
parent bf71ed421c
commit 73f89c7837
1 changed files with 11 additions and 7 deletions

View File

@ -83,13 +83,17 @@ func GetChatFlagEmoji(r *http.Request) (string, error) {
// Subdivisions (states)
if len(city.Subdivisions) > 0 {
for _, sub := range city.Subdivisions {
// Can we get its name?
if name, ok := sub.Names["en"]; ok {
flags = append(flags, name)
} else {
flags = append(flags, sub.IsoCode)
}
// Stop at just one subdivision. This will be US states
// and general regions, but without getting too specific
// for UK users especially where the subdivisions can hone
// in on their city of 1,000 population!
sub := city.Subdivisions[0]
// Can we get its name?
if name, ok := sub.Names["en"]; ok {
flags = append(flags, name)
} else {
flags = append(flags, sub.IsoCode)
}
}