diff --git a/src/Tgstation.Server.Host/Components/InstanceManager.cs b/src/Tgstation.Server.Host/Components/InstanceManager.cs index 80aa3b45cd..de5ebc1630 100644 --- a/src/Tgstation.Server.Host/Components/InstanceManager.cs +++ b/src/Tgstation.Server.Host/Components/InstanceManager.cs @@ -402,7 +402,7 @@ namespace Tgstation.Server.Host.Components .Where(x => x.Online.Value && x.SwarmIdentifer == swarmConfiguration.Identifier) .Include(x => x.RepositorySettings) .Include(x => x.ChatSettings) - .ThenInclude(x => x.Channels) + .ThenInclude(x => x.Channels) .Include(x => x.DreamDaemonSettings) .ToListAsync(cancellationToken) .ConfigureAwait(false)); diff --git a/src/Tgstation.Server.Host/Controllers/InstanceController.cs b/src/Tgstation.Server.Host/Controllers/InstanceController.cs index 77793afe08..c077f8df44 100644 --- a/src/Tgstation.Server.Host/Controllers/InstanceController.cs +++ b/src/Tgstation.Server.Host/Controllers/InstanceController.cs @@ -356,7 +356,7 @@ namespace Tgstation.Server.Host.Controllers var originalModel = await InstanceQuery() .Include(x => x.RepositorySettings) .Include(x => x.ChatSettings) - .ThenInclude(x => x.Channels) + .ThenInclude(x => x.Channels) .Include(x => x.DreamDaemonSettings) // need these for onlining .FirstOrDefaultAsync(cancellationToken).ConfigureAwait(false); if (originalModel == default(Models.Instance))