mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Fix nulls
This commit is contained in:
@ -105,7 +105,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
||||
{
|
||||
request?.Cancel();
|
||||
|
||||
if (beatmap == null)
|
||||
if (!beatmap?.OnlineBeatmapID.HasValue ?? false)
|
||||
{
|
||||
clearAllScores();
|
||||
return;
|
||||
|
Reference in New Issue
Block a user