fix(ui): omit country flag emoji on Windows to avoid DE(DE) display (#9454)

This commit is contained in:
Miheichev Aleksandr Sergeevich
2026-06-03 01:03:11 +00:00
committed by GitHub
parent fcf6c1e3ae
commit 8609e2b8d1

View File

@@ -22,7 +22,7 @@ public readonly record struct IpInfoResult(string Country, string? Ip)
{
public override string ToString()
{
var emoji = Country.CountryToEmoji();
var emoji = Utils.IsWindows() ? null : Country.CountryToEmoji();
return $"{emoji}({Country}) {Ip}";
}
}