media library: fix sorting by disc
This commit is contained in:
@@ -940,7 +940,7 @@ void DisplayPrimaryTags(NC::Menu<std::string> &menu)
|
|||||||
|
|
||||||
bool SortSongsByTrack(const MPD::Song &a, const MPD::Song &b)
|
bool SortSongsByTrack(const MPD::Song &a, const MPD::Song &b)
|
||||||
{
|
{
|
||||||
int cmp = a.getDisc().compare(a.getDisc());
|
int cmp = a.getDisc().compare(b.getDisc());
|
||||||
if (cmp != 0)
|
if (cmp != 0)
|
||||||
return cmp;
|
return cmp;
|
||||||
return a.getTrack() < b.getTrack();
|
return a.getTrack() < b.getTrack();
|
||||||
|
|||||||
Reference in New Issue
Block a user