mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 14:12:56 +08:00
Fix incorrect null check
This commit is contained in:
parent
74bcc61a67
commit
36ac002820
@ -105,7 +105,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
||||
{
|
||||
request?.Cancel();
|
||||
|
||||
if (!beatmap?.OnlineBeatmapID.HasValue ?? false)
|
||||
if (!beatmap?.OnlineBeatmapID.HasValue ?? true)
|
||||
{
|
||||
clearAllScores();
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user