mirror of
https://github.com/osukey/osukey.git
synced 2025-06-10 13:58:01 +09:00
Fix Beatmap overlay trying to fetch scores even if beatmap has… (#5626)
Fix Beatmap overlay trying to fetch scores even if beatmap has no leaderboard
This commit is contained in:
commit
6b1132c5ca
@ -132,7 +132,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
|||||||
|
|
||||||
Scores = null;
|
Scores = null;
|
||||||
|
|
||||||
if (beatmap?.OnlineBeatmapID.HasValue != true)
|
if (beatmap?.OnlineBeatmapID.HasValue != true || beatmap.Status <= BeatmapSetOnlineStatus.Pending)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
loadingAnimation.Show();
|
loadingAnimation.Show();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user