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

@ -1,6 +1,6 @@
{
"name": "publikator",
"version": "0.15.0",
"version": "0.16.0",
"main": "index.js",
"repository": "https://github.com/aengl/publikator.git",
"author": "Lynn Smeria <ae@cephea.de>",

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'),
});
/**