Fixed download bar not completed when item is already downloaded

This commit is contained in:
RemixDev
2022-08-19 22:43:35 +02:00
parent 90f52faad2
commit a63826a369

View File

@@ -243,7 +243,7 @@ export default {
}
}
const needToStartDownload = (queueItem.progress > 0 && queueItem.progress < 100) || current
const needToStartDownload = !itemIsAlreadyDownloaded && ((queueItem.progress > 0 && queueItem.progress < 100) || current)
if (needToStartDownload) {
this.startDownload(queueItem.uuid)