mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Fix nullability inspection
This commit is contained in:
parent
e47722565a
commit
764029bde1
@ -41,7 +41,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
// To work around this, temporarily remove the room and trigger an immediate listing poll.
|
// To work around this, temporarily remove the room and trigger an immediate listing poll.
|
||||||
if (e.Last is MultiplayerMatchSubScreen match)
|
if (e.Last is MultiplayerMatchSubScreen match)
|
||||||
{
|
{
|
||||||
RoomManager.RemoveRoom(match.Room);
|
RoomManager?.RemoveRoom(match.Room);
|
||||||
ListingPollingComponent.PollImmediately();
|
ListingPollingComponent.PollImmediately();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user