mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Fix back-to-front conditional check
This commit is contained in:
@ -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(() =>
|
||||
{
|
||||
|
Reference in New Issue
Block a user