From 5e7aaa667b6b955fb00542bdc1369eedca60801f Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 2 Mar 2020 14:20:57 -0500 Subject: [PATCH] fix: missing id in queue items was preventing scrobble to work properly --- ui/src/player/queue.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/player/queue.js b/ui/src/player/queue.js index 171f98eb4..e97f1b047 100644 --- a/ui/src/player/queue.js +++ b/ui/src/player/queue.js @@ -8,6 +8,7 @@ const PLAYER_SCROBBLE = 'PLAYER_SCROBBLE' const PLAYER_PLAY_ALBUM = 'PLAYER_PLAY_ALBUM' const mapToAudioLists = (item) => ({ + id: item.id, name: item.title, singer: item.artist, cover: subsonicUrl('getCoverArt', item.id, { size: 300 }),