Fixed case sensitive ordering issue in websites list.

This commit is contained in:
CalDescent 2022-01-27 18:42:52 +00:00
parent 344704b6bf
commit a0ba016171

View File

@ -330,7 +330,7 @@ public class HSQLDBArbitraryRepository implements ArbitraryRepository {
bindParams.add(name); bindParams.add(name);
} }
sql.append(" GROUP BY name, service, identifier ORDER BY name"); sql.append(" GROUP BY name, service, identifier ORDER BY name COLLATE SQL_TEXT_UCC_NO_PAD");
if (reverse != null && reverse) { if (reverse != null && reverse) {
sql.append(" DESC"); sql.append(" DESC");