1
0
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:
EVAST9919 2017-11-11 18:25:16 +03:00
parent 74bcc61a67
commit 36ac002820

View File

@ -105,7 +105,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
{
request?.Cancel();
if (!beatmap?.OnlineBeatmapID.HasValue ?? false)
if (!beatmap?.OnlineBeatmapID.HasValue ?? true)
{
clearAllScores();
return;