mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Fix incorrect null check
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user