From e542a2b5e85a24196cdbbdfbbb5d90335828c3ff Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 10 Jul 2020 11:23:52 -0400 Subject: [PATCH] Fix clearing host propagated exceptions --- src/Tgstation.Server.Host/Server.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Server.cs b/src/Tgstation.Server.Host/Server.cs index 45b37f2c74..2d5dc1bd80 100644 --- a/src/Tgstation.Server.Host/Server.cs +++ b/src/Tgstation.Server.Host/Server.cs @@ -286,7 +286,7 @@ namespace Tgstation.Server.Host } RestartRequested = true; - propagatedException = exception; + propagatedException ??= exception; } if (exception == null)