Fix downloading and sharing from a playlist. Fix #2123

This commit is contained in:
Deluan
2023-01-30 11:20:22 -05:00
parent 25374b3bbe
commit 762a1ba998
3 changed files with 11 additions and 11 deletions
+3 -2
View File
@@ -29,10 +29,11 @@ const DownloadMenuDialog = () => {
const handleDownload = (e) => {
if (record) {
const id = record.mediaFileId || record.id
if (originalFormat) {
subsonic.download(record.id, 'raw')
subsonic.download(id, 'raw')
} else {
subsonic.download(record.id, format, maxBitRate?.toString())
subsonic.download(id, format, maxBitRate?.toString())
}
dispatch(closeDownloadMenu())
}