mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-05 02:38:09 -05:00
Add sub-sorting when sort=artists, because otherwise Tunesremote SE will not play the artist's tracks in proper order
This commit is contained in:
parent
70fea7e459
commit
7a0dfef136
2
src/db.c
2
src/db.c
@ -280,7 +280,7 @@ static const char *sort_clause[] =
|
|||||||
"",
|
"",
|
||||||
"ORDER BY f.title_sort ASC",
|
"ORDER BY f.title_sort ASC",
|
||||||
"ORDER BY f.album_sort ASC, f.disc ASC, f.track ASC",
|
"ORDER BY f.album_sort ASC, f.disc ASC, f.track ASC",
|
||||||
"ORDER BY f.album_artist_sort ASC",
|
"ORDER BY f.album_artist_sort ASC, f.album_sort ASC, f.disc ASC, f.track ASC",
|
||||||
"ORDER BY f.type ASC, f.parent_id ASC, f.special_id ASC, f.title ASC",
|
"ORDER BY f.type ASC, f.parent_id ASC, f.special_id ASC, f.title ASC",
|
||||||
"ORDER BY f.year ASC",
|
"ORDER BY f.year ASC",
|
||||||
"ORDER BY f.genre ASC",
|
"ORDER BY f.genre ASC",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user