Favor current_track data over index

This commit is contained in:
James Barnsley
2020-11-14 21:33:13 +13:00
parent 9cc1bcfc80
commit 407cc7d9de

View File

@ -369,7 +369,10 @@ const mapStateToProps = (state) => {
// Siphon off this track if it's a full representation of our current track
if (track.playing) {
current_track = track;
current_track = {
...track,
...core_current_track,
};
}
// Now add our compiled track for our tracklist