mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +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;
|
RelativeSizeAxes = Axes.Y;
|
||||||
TextAnchor = Anchor.CentreLeft;
|
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