Prevent error message for rimraf

This commit is contained in:
Geomitron
2020-05-17 21:55:40 -04:00
parent 34fe405fac
commit b9e1d61529
5 changed files with 6 additions and 9 deletions

View File

@@ -87,7 +87,9 @@ export class ChartDownload {
const cancelFn = this.cancelFn
this.cancelFn = undefined
cancelFn()
rimraf(this.chartPath) // Delete temp folder
try {
rimraf(this.chartPath) // Delete temp folder
} catch (e) { /** Do nothing */ }
}
}

View File

@@ -68,7 +68,7 @@ class DownloadHandler implements IPCEmitHandler<'download'> {
private startNextDownload() {
if (!this.downloadQueue.isEmpty()) {
this.currentDownload = this.downloadQueue.pop()
this.currentDownload = this.downloadQueue.shift()
if (this.currentDownload.hasFailed) {
this.currentDownload.retry()
} else {

View File

@@ -15,7 +15,7 @@ export class DownloadQueue {
this.sort()
}
pop() {
shift() {
return this.downloadQueue.shift()
}