Fix indentation

This commit is contained in:
Jordan Brown
2021-10-14 10:27:05 -04:00
parent 99b5f7585e
commit bef163699b
2 changed files with 2 additions and 2 deletions
@@ -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));
@@ -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))