Skip to content

Commit

Permalink
Correctly sort tracks within the tracklists, ref #574
Browse files Browse the repository at this point in the history
  • Loading branch information
epoupon committed Dec 19, 2024
1 parent d6c5fc4 commit 7306a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/database/impl/Track.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7306a6b

Please # to comment.