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) 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! //couldn't load, hard abort!
return null; return null;
} }