Fix Configuration directory listings ordering

Related to #1617
This commit is contained in:
Jordan Dominion
2023-08-12 13:35:29 -04:00
parent e71ef39db9
commit d69c2c7e01
@@ -193,7 +193,7 @@ namespace Tgstation.Server.Host.Controllers
return new PaginatableResult<ConfigurationFileResponse>(
result
.AsQueryable()
.OrderBy(x => x.Path));
.OrderBy(x => x)); // ordering performed by IConfiguration
}
catch (NotImplementedException ex)
{