From 050778460d263f310d34601b0a41cf7884eacab9 Mon Sep 17 00:00:00 2001
From: Deluan <deluan@deluan.com>
Date: Wed, 4 Mar 2020 10:30:58 -0500
Subject: [PATCH] fix: missing id in queue items was preventing scrobble to
 work properly

---
 ui/src/player/queue.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/player/queue.js b/ui/src/player/queue.js
index 0915cd6ae..e97f1b047 100644
--- a/ui/src/player/queue.js
+++ b/ui/src/player/queue.js
@@ -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 }),