mirror of
https://github.com/ppy/osu.git
synced 2025-01-29 13:42:54 +08: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 =>
|
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());
|
onError?.Invoke(exception.ToString());
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user