From d69c2c7e01848ec14eb0fc25b2d4bdd6f89f23bc Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 12 Aug 2023 13:35:29 -0400 Subject: [PATCH] Fix Configuration directory listings ordering Related to #1617 --- .../Controllers/ConfigurationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Controllers/ConfigurationController.cs b/src/Tgstation.Server.Host/Controllers/ConfigurationController.cs index 52819df9ab..1a7e2dab49 100644 --- a/src/Tgstation.Server.Host/Controllers/ConfigurationController.cs +++ b/src/Tgstation.Server.Host/Controllers/ConfigurationController.cs @@ -193,7 +193,7 @@ namespace Tgstation.Server.Host.Controllers return new PaginatableResult( result .AsQueryable() - .OrderBy(x => x.Path)); + .OrderBy(x => x)); // ordering performed by IConfiguration } catch (NotImplementedException ex) {