diff --git a/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs b/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs index f6b7436cec..e0c38278c9 100644 --- a/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs +++ b/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs @@ -675,7 +675,9 @@ namespace Tgstation.Server.Host.Components.Deployment { if (currentChatCallback != null) await currentChatCallback( - ex.Message, + ex is OperationCanceledException + ? "The job was cancelled!" + : ex.Message, currentDreamMakerOutput) .ConfigureAwait(false);