We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b8115 commit 3d1a3c0Copy full SHA for 3d1a3c0
1 file changed
osu.Game.Rulesets.Sentakki/IO/GameplayEventBroadcaster.cs
@@ -34,7 +34,14 @@ private async void attemptConnection()
34
isWaitingForClient = true;
35
36
try { await pipeServer.WaitForConnectionAsync(cancellationToken).ConfigureAwait(false); }
37
- catch (TaskCanceledException) { return; }
+ catch (Exception e)
38
+ {
39
+ // The operation was canceled. Gracefully shutdown;
40
+ if (e is TaskCanceledException || e is OperationCanceledException)
41
+ return;
42
+
43
+ throw;
44
+ }
45
46
isWaitingForClient = false;
47
0 commit comments