Fix not retrieving bravo server reattach info

This commit is contained in:
Jordan Brown
2018-09-25 19:21:21 -04:00
parent 0e5701d12a
commit 3e5a2c8167
@@ -99,7 +99,7 @@ namespace Tgstation.Server.Host.Components
{
var instance = await db.Instances.Where(x => x.Id == metadata.Id)
.Include(x => x.WatchdogReattachInformation).ThenInclude(x => x.Alpha)
.Include(x => x.WatchdogReattachInformation).ThenInclude(x => x.Alpha)
.Include(x => x.WatchdogReattachInformation).ThenInclude(x => x.Bravo)
.FirstOrDefaultAsync(cancellationToken).ConfigureAwait(false);
result = instance.WatchdogReattachInformation;
if (result == default)