Add a MISSING AWAIT WTF

This commit is contained in:
Jordan Brown
2020-05-13 18:07:37 -04:00
parent 1bba9a2674
commit d6be521865
@@ -302,7 +302,7 @@ namespace Tgstation.Server.Host.Components.Deployment
if (deleting > 0)
{
logger.LogDebug("Cleaning unused game folders: {0}...", String.Join(", ", directories));
await Task.WhenAll().ConfigureAwait(false);
await Task.WhenAll(tasks).ConfigureAwait(false);
}
}
#pragma warning restore CA1506