1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 13:22:55 +08:00

Don't trigger notification when user quit

This commit is contained in:
Dan Balasescu 2022-06-09 14:13:13 +09:00
parent bfde334e77
commit ec03dc16db

View File

@ -520,7 +520,8 @@ namespace osu.Game.Screens.Play
}
catch (Exception e)
{
Logger.Error(e, "Could not load beatmap successfully!");
if (this.IsCurrentScreen())
Logger.Error(e, "Could not load beatmap successfully!");
//couldn't load, hard abort!
return null;
}