diff --git a/src/Tgstation.Server.Host/Core/JobManager.cs b/src/Tgstation.Server.Host/Core/JobManager.cs index cb034f445a..304f2d0acd 100644 --- a/src/Tgstation.Server.Host/Core/JobManager.cs +++ b/src/Tgstation.Server.Host/Core/JobManager.cs @@ -114,7 +114,7 @@ namespace Tgstation.Server.Host.Core await databaseContext.Save(default).ConfigureAwait(false); - bool JobErroredOrCancelled() => job.ExceptionDetails != null || job.Cancelled.Value; + bool JobErroredOrCancelled() => job.ExceptionDetails != null || job.Cancelled == true; //ok so, now it's time for the post commit step if it exists if (!JobErroredOrCancelled() && job.PostComplete != null)