mirror of
https://github.com/ppy/osu
synced 2025-01-20 21:10:49 +00:00
Don't log cancelled join requests
This commit is contained in:
parent
d7ea264ef4
commit
95ff48c123
@ -98,7 +98,8 @@ namespace osu.Game.Screens.Multi
|
||||
|
||||
currentJoinRoomRequest.Failure += exception =>
|
||||
{
|
||||
Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important);
|
||||
if (!(exception is OperationCanceledException))
|
||||
Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important);
|
||||
onError?.Invoke(exception.ToString());
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user