mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Only add link if the country name isn't null
This commit is contained in:
@ -73,7 +73,8 @@ namespace osu.Game.Overlays.Rankings.Tables
|
||||
RelativeSizeAxes = Axes.Y;
|
||||
TextAnchor = Anchor.CentreLeft;
|
||||
|
||||
AddLink(country.FullName ?? string.Empty, () => rankings?.ShowCountry(country));
|
||||
if (country.FullName != null)
|
||||
AddLink(country.FullName, () => rankings?.ShowCountry(country));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user