From 7afad2c96ebdbf7a0e6ff67353fae57cf429af8d Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 10 Nov 2020 16:24:34 -0500 Subject: [PATCH] Fix download single track from Playlist --- ui/src/common/SongContextMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/common/SongContextMenu.js b/ui/src/common/SongContextMenu.js index a8e603162..f4499b90a 100644 --- a/ui/src/common/SongContextMenu.js +++ b/ui/src/common/SongContextMenu.js @@ -63,7 +63,7 @@ const SongContextMenu = ({ label: `${translate('resources.song.actions.download')} (${formatBytes( record.size )})`, - action: (record) => subsonic.download(record.id), + action: (record) => subsonic.download(record.mediaFileId || record.id), }, }