diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-19 00:37:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-22 14:34:25 +0100 |
| commit | 44cd984db9877b2a1aac3321744f7d0415f2f2e9 (patch) | |
| tree | 684fe336e2bfff84920a2c752155b5617d0d3b36 /src/lib/cinema_list.cc | |
| parent | 16b3f6c6245acf9689349dbd2af7d4411f861767 (diff) | |
Sort cinemas and DKDM recipients correctly using the collator (#2950).
Diffstat (limited to 'src/lib/cinema_list.cc')
| -rw-r--r-- | src/lib/cinema_list.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cinema_list.cc b/src/lib/cinema_list.cc index 4ee538efe..8673f9c8b 100644 --- a/src/lib/cinema_list.cc +++ b/src/lib/cinema_list.cc @@ -244,7 +244,7 @@ cinemas_from_result(SQLiteStatement& statement) vector<pair<CinemaID, Cinema>> CinemaList::cinemas() const { - SQLiteStatement statement(_db, _cinemas.select("ORDER BY name ASC")); + SQLiteStatement statement(_db, _cinemas.select("ORDER BY name COLLATE unicode ASC")); return cinemas_from_result(statement); } |
