1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 21:39:30 +08:00

Fix incorrect null check

This commit is contained in:
EVAST9919
2017-11-11 18:25:16 +03:00
Unverified
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;