allow cancelled exception

This commit is contained in:
Matt Parker
2025-08-10 01:44:24 +10:00
parent 33a43f9c29
commit 180673e871

View File

@@ -38,7 +38,7 @@
await _terminalDisplayRef.Write(log); await _terminalDisplayRef.Write(log);
} }
} }
catch (Exception e) catch (Exception e) when (e is not OperationCanceledException)
{ {
await DispatchExceptionAsync(e); await DispatchExceptionAsync(e);
} }