From 3e5a2c81672f4e1f0e0dd2c72b3638b7912e5578 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 25 Sep 2018 19:21:21 -0400 Subject: [PATCH] Fix not retrieving bravo server reattach info --- src/Tgstation.Server.Host/Components/ReattachInfoHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/ReattachInfoHandler.cs b/src/Tgstation.Server.Host/Components/ReattachInfoHandler.cs index 2e8fe33444..500983d631 100644 --- a/src/Tgstation.Server.Host/Components/ReattachInfoHandler.cs +++ b/src/Tgstation.Server.Host/Components/ReattachInfoHandler.cs @@ -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)