Sort tracks by track number

This commit is contained in:
Lynn Smeria 2018-08-29 17:00:34 +02:00
parent 03508e73b9
commit c25b7badbe
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ const getAlbumInfo = (root, tracks) => ({
bitrate: collect(tracks, t => t.format.bitrate),
trackCount: tracks.length,
cover: tracks[0].cover || null,
tracks,
tracks: _.sortBy(tracks, 'common.track.no'),
});
/**