mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 19:22:56 +08:00
Fix back-to-front conditional check
This commit is contained in:
parent
f795f77cf9
commit
2b8a5833dd
@ -77,7 +77,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
||||
loadingLayer.Hide();
|
||||
|
||||
// If an error or server side trigger occurred this screen may have already exited by external means.
|
||||
if (!this.IsCurrentScreen())
|
||||
if (this.IsCurrentScreen())
|
||||
this.Exit();
|
||||
}), onError: _ => Schedule(() =>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user