From 69930fc9f9ca064728f6a0f00cd932291278c023 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 10 Jul 2020 11:27:12 -0400 Subject: [PATCH] Minor query rearrangement --- src/Tgstation.Server.Host/Components/InstanceManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/InstanceManager.cs b/src/Tgstation.Server.Host/Components/InstanceManager.cs index b6909e91e2..c7107562b0 100644 --- a/src/Tgstation.Server.Host/Components/InstanceManager.cs +++ b/src/Tgstation.Server.Host/Components/InstanceManager.cs @@ -290,9 +290,9 @@ namespace Tgstation.Server.Host.Components .AsQueryable() .Where(x => x.Online.Value) .Include(x => x.RepositorySettings) + .Include(x => x.DreamDaemonSettings) .Include(x => x.ChatSettings) .ThenInclude(x => x.Channels) - .Include(x => x.DreamDaemonSettings) .ToAsyncEnumerable(); var tasks = new List(); await factoryStartup.ConfigureAwait(false);