mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Show retrieval failure when OnlineBeatmapID is missing
This commit is contained in:
@ -191,7 +191,14 @@ namespace osu.Game.Screens.Select.Leaderboards
|
||||
|
||||
Scores = null;
|
||||
|
||||
if (api == null || Beatmap?.OnlineBeatmapID == null) return;
|
||||
if (api == null || Beatmap?.OnlineBeatmapID == null)
|
||||
{
|
||||
replacePlaceholder(new RetrievalFailurePlaceholder
|
||||
{
|
||||
OnRetry = UpdateScores,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
loading.Show();
|
||||
|
||||
|
Reference in New Issue
Block a user