Skip to content

Commit

Permalink
fix: missing id in queue items was preventing scrobble to work properly
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed Mar 2, 2020
1 parent 1afc495 commit 5e7aaa6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ui/src/player/queue.js
Expand Up @@ -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 }),
Expand Down

0 comments on commit 5e7aaa6

Please sign in to comment.