Fix download single track from Playlist

This commit is contained in:
Deluan
2020-11-10 16:24:34 -05:00
parent 08e63c867b
commit 7afad2c96e
+1 -1
View File
@@ -63,7 +63,7 @@ const SongContextMenu = ({
label: `${translate('resources.song.actions.download')} (${formatBytes( label: `${translate('resources.song.actions.download')} (${formatBytes(
record.size record.size
)})`, )})`,
action: (record) => subsonic.download(record.id), action: (record) => subsonic.download(record.mediaFileId || record.id),
}, },
} }