Merge branch 'devel'

This commit is contained in:
2025-02-26 23:31:18 +01:00
5 changed files with 28 additions and 9 deletions

View File

@@ -169,7 +169,7 @@ public class ClientController extends Controller {
.stream()
.map(clients::getClient)
.flatMap(Optional::stream)
.sorted(Comparator.comparing(Client::name))
.sorted(Comparator.comparing(Client::name, String.CASE_INSENSITIVE_ORDER))
.map(Client::safeMap)
.toList();
return sendContent(ex, Map.of(AUTHORZED, authorizedClients, NAME, user.realName()));