diff --git a/WebfrontCore/Controllers/ClientController.cs b/WebfrontCore/Controllers/ClientController.cs index 63787ac75..46623804b 100644 --- a/WebfrontCore/Controllers/ClientController.cs +++ b/WebfrontCore/Controllers/ClientController.cs @@ -93,9 +93,7 @@ namespace WebfrontCore.Controllers public async Task PrivilegedAsync() { var admins = (await Manager.GetClientService().GetPrivilegedClients()) - .GroupBy(a => a.AliasLinkId) - .Select(_client => _client.OrderByDescending(_c => _c.LastConnection).First()) - .OrderByDescending(_client => _client.Level); + .OrderBy(_client => _client.Name); var adminsDict = new Dictionary>();