mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 03:22:54 +08:00
Fix code quality inspection
This commit is contained in:
parent
58507291b9
commit
287229efd5
@ -67,7 +67,7 @@ namespace osu.Game.Online.Rooms
|
|||||||
{
|
{
|
||||||
var beatmap = task.GetResultSafely();
|
var beatmap = task.GetResultSafely();
|
||||||
|
|
||||||
if (SelectedItem.Value?.Beatmap.OnlineID == beatmap.OnlineID)
|
if (beatmap != null && SelectedItem.Value?.Beatmap.OnlineID == beatmap.OnlineID)
|
||||||
{
|
{
|
||||||
selectedBeatmap = beatmap;
|
selectedBeatmap = beatmap;
|
||||||
beginTracking();
|
beginTracking();
|
||||||
|
Loading…
Reference in New Issue
Block a user