Code cleanup

This commit is contained in:
RemixDev 2022-08-19 18:18:26 +02:00
parent aee2446d55
commit 1cce5db269
No known key found for this signature in database
GPG key ID: B33962B465BDB51C

View file

@ -701,17 +701,12 @@ class Downloader {
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)
if (error) this.afterDownloadErrorReport("ExecuteCommand", error)
const itemData = { stderr, stdout }
if (stderr) this.log(itemData, "stderr")
if (stdout) this.log(itemData, "stdout")
}
const itemData = { stderr, stdout };
if (stderr) {
this.log(itemData, "stderr")
}
if (stdout) {
this.log(itemData, "stdout")
}
})
)
await new Promise((resolve) => {
child.on('close', resolve)
@ -807,17 +802,12 @@ class Downloader {
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)
if (error) this.afterDownloadErrorReport("ExecuteCommand", error)
const itemData = { stderr, stdout }
if (stderr) this.log(itemData, "stderr")
if (stdout) this.log(itemData, "stdout")
}
const itemData = { stderr, stdout };
if (stderr) {
this.log(itemData, "stderr")
}
if (stdout) {
this.log(itemData, "stdout")
}
})
)
await new Promise((resolve) => {
child.on('close', resolve)