Skip to content

Commit

Permalink
Fix unobserved exceptions on named pipe shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Dec 9, 2024
1 parent 83ea26d commit c7f4b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Platform/NamedPipeIpcProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private async Task listen(NamedPipeServerStream pipe)
}
}
}
catch (TaskCanceledException)
catch (OperationCanceledException)
{
}
finally
Expand Down

0 comments on commit c7f4b5b

Please sign in to comment.