mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2024-12-28 02:16:08 +00:00
Code cleanup
This commit is contained in:
parent
aee2446d55
commit
1cce5db269
|
@ -700,18 +700,13 @@ class Downloader {
|
|||
try {
|
||||
if (this.settings.executeCommand !== "") {
|
||||
const child = exec(this.settings.executeCommand.replaceAll("%folder%", shellEscape(this.downloadObject.extrasPath)).replaceAll("%filename%", shellEscape(track.filename)),
|
||||
(error, stdout, stderr) => {
|
||||
if (error) {
|
||||
this.afterDownloadErrorReport("ExecuteCommand", error)
|
||||
}
|
||||
const itemData = { stderr, stdout };
|
||||
if (stderr) {
|
||||
this.log(itemData, "stderr")
|
||||
}
|
||||
if (stdout) {
|
||||
this.log(itemData, "stdout")
|
||||
}
|
||||
})
|
||||
(error, stdout, stderr) => {
|
||||
if (error) this.afterDownloadErrorReport("ExecuteCommand", error)
|
||||
const itemData = { stderr, stdout }
|
||||
if (stderr) this.log(itemData, "stderr")
|
||||
if (stdout) this.log(itemData, "stdout")
|
||||
}
|
||||
)
|
||||
|
||||
await new Promise((resolve) => {
|
||||
child.on('close', resolve)
|
||||
|
@ -806,18 +801,13 @@ class Downloader {
|
|||
try{
|
||||
if (this.settings.executeCommand !== "") {
|
||||
const child = exec(this.settings.executeCommand.replaceAll("%folder%", shellEscape(this.downloadObject.extrasPath)).replaceAll("%filename%", ''),
|
||||
(error, stdout, stderr) => {
|
||||
if (error) {
|
||||
this.afterDownloadErrorReport("ExecuteCommand", error)
|
||||
}
|
||||
const itemData = { stderr, stdout };
|
||||
if (stderr) {
|
||||
this.log(itemData, "stderr")
|
||||
}
|
||||
if (stdout) {
|
||||
this.log(itemData, "stdout")
|
||||
}
|
||||
})
|
||||
(error, stdout, stderr) => {
|
||||
if (error) this.afterDownloadErrorReport("ExecuteCommand", error)
|
||||
const itemData = { stderr, stdout }
|
||||
if (stderr) this.log(itemData, "stderr")
|
||||
if (stdout) this.log(itemData, "stdout")
|
||||
}
|
||||
)
|
||||
|
||||
await new Promise((resolve) => {
|
||||
child.on('close', resolve)
|
||||
|
|
Loading…
Reference in a new issue