mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Fix unranked beatmap leaderboards showing "no records" placeholder
This commit is contained in:
@ -68,10 +68,14 @@ namespace osu.Game.Screens.Select.Leaderboards
|
||||
return null;
|
||||
}
|
||||
|
||||
if (Beatmap?.OnlineBeatmapID == null)
|
||||
switch (Beatmap?.Status)
|
||||
{
|
||||
PlaceholderState = PlaceholderState.Unavailable;
|
||||
return null;
|
||||
case BeatmapSetOnlineStatus.Graveyard:
|
||||
case BeatmapSetOnlineStatus.None:
|
||||
case BeatmapSetOnlineStatus.Pending:
|
||||
case BeatmapSetOnlineStatus.WIP:
|
||||
PlaceholderState = PlaceholderState.Unavailable;
|
||||
return null;
|
||||
}
|
||||
|
||||
if (Scope != BeatmapLeaderboardScope.Global && !api.LocalUser.Value.IsSupporter)
|
||||
|
Reference in New Issue
Block a user