From bef163699b5f4e646cfc2833cef3604c55331838 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 14 Oct 2021 10:27:05 -0400 Subject: [PATCH] Fix indentation --- src/Tgstation.Server.Host/Components/InstanceManager.cs | 2 +- src/Tgstation.Server.Host/Controllers/InstanceController.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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))