fix: missing id in queue items was preventing scrobble to work properly

This commit is contained in:
Deluan 2020-03-04 10:30:58 -05:00
parent 28bc9c1d4f
commit 050778460d

View File

@ -8,7 +8,7 @@ const PLAYER_SCROBBLE = 'PLAYER_SCROBBLE'
const PLAYER_PLAY_ALBUM = 'PLAYER_PLAY_ALBUM'
const mapToAudioLists = (item) => ({
// id: item.id,
id: item.id,
name: item.title,
singer: item.artist,
cover: subsonicUrl('getCoverArt', item.id, { size: 300 }),