Merge pull request #1056 from tgstation/FtlFix [TGSDeploy]

Ftl fix
This commit is contained in:
Jordan Brown
2020-06-16 21:36:14 -04:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<PropertyGroup>
<!-- This is the authorative version list -->
<!-- Integration tests will ensure they match across the board -->
<TgsCoreVersion>4.3.5</TgsCoreVersion>
<TgsCoreVersion>4.3.6</TgsCoreVersion>
<TgsApiVersion>6.6.0</TgsApiVersion>
<TgsClientVersion>7.2.0</TgsClientVersion>
<TgsDmapiVersion>5.2.2</TgsDmapiVersion>
@@ -52,6 +52,7 @@ namespace Tgstation.Server.Host.Controllers
var result = await DatabaseContext
.Jobs
.AsQueryable()
.Include(x => x.StartedBy)
.Where(x => x.Instance.Id == Instance.Id && !x.StoppedAt.HasValue)
.OrderByDescending(x => x.StartedAt)
.ToListAsync(cancellationToken)