mirror of
https://github.com/ppy/osu
synced 2025-03-24 11:56:58 +00: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();
|
request?.Cancel();
|
||||||
|
|
||||||
if (!beatmap?.OnlineBeatmapID.HasValue ?? false)
|
if (!beatmap?.OnlineBeatmapID.HasValue ?? true)
|
||||||
{
|
{
|
||||||
clearAllScores();
|
clearAllScores();
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user