From 36ac002820c05e1729cbce47af510a85dfcdcc86 Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Sat, 11 Nov 2017 18:25:16 +0300 Subject: [PATCH] Fix incorrect null check --- osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs b/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs index 164823f105..1134d43f53 100644 --- a/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs +++ b/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs @@ -105,7 +105,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores { request?.Cancel(); - if (!beatmap?.OnlineBeatmapID.HasValue ?? false) + if (!beatmap?.OnlineBeatmapID.HasValue ?? true) { clearAllScores(); return;