mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-02 16:41:21 +03:00
fix: missing id in queue items was preventing scrobble to work properly
This commit is contained in:
parent
28bc9c1d4f
commit
050778460d
@ -8,7 +8,7 @@ const PLAYER_SCROBBLE = 'PLAYER_SCROBBLE'
|
|||||||
const PLAYER_PLAY_ALBUM = 'PLAYER_PLAY_ALBUM'
|
const PLAYER_PLAY_ALBUM = 'PLAYER_PLAY_ALBUM'
|
||||||
|
|
||||||
const mapToAudioLists = (item) => ({
|
const mapToAudioLists = (item) => ({
|
||||||
// id: item.id,
|
id: item.id,
|
||||||
name: item.title,
|
name: item.title,
|
||||||
singer: item.artist,
|
singer: item.artist,
|
||||||
cover: subsonicUrl('getCoverArt', item.id, { size: 300 }),
|
cover: subsonicUrl('getCoverArt', item.id, { size: 300 }),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user