From 4cd7d57bd191ed145bf7c147ec4e7fe4b8cd9b8e Mon Sep 17 00:00:00 2001 From: Dominion Date: Tue, 23 May 2023 17:55:17 -0400 Subject: [PATCH] Fixes #1498 --- src/Tgstation.Server.Host/Components/Chat/ChatManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs index aa65578aa0..5ae211107d 100644 --- a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs +++ b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs @@ -1043,6 +1043,10 @@ namespace Tgstation.Server.Host.Components.Chat { await task; } + catch (OperationCanceledException ex) + { + logger.LogDebug(ex, "Async chat message cancelled!"); + } catch (Exception ex) { logger.LogError(ex, "Error in asynchronous chat message!");