started playlist downlaod messageBox

This commit is contained in:
Araxeus
2021-05-06 03:33:49 +03:00
parent 61c5494588
commit 13fb686188
2 changed files with 12 additions and 4 deletions

View File

@ -183,12 +183,12 @@ module.exports = {
ipcRenderer.on(
"downloader-download-playlist",
(_, songMetadata, playlistFolder, options) => {
(_, url, playlistFolder, options) => {
const reinit = () =>
ipcRenderer.send("downloader-feedback", defaultMenuDownloadLabel);
downloadVideoToMP3(
songMetadata.url,
url,
(feedback) => {
ipcRenderer.send("downloader-feedback", feedback);
},