Correctly sort tracks within the tracklists, ref #574

This commit is contained in:
emeric
2024-12-19 21:01:25 +01:00
parent d6c5fc464e
commit 7306a6b47d
+1 -1
View File
@@ -195,7 +195,7 @@ namespace lms::db
break;
case TrackSortMethod::TrackList:
assert(params.trackList.isValid());
query.orderBy("t_l.id");
query.orderBy("t_l_e.id");
}
return query;