From a63826a369a6d1c9966cd491a06079253ae4993e Mon Sep 17 00:00:00 2001 From: RemixDev Date: Fri, 19 Aug 2022 22:43:35 +0200 Subject: [PATCH] Fixed download bar not completed when item is already downloaded --- src/components/downloads/TheDownloadBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/downloads/TheDownloadBar.vue b/src/components/downloads/TheDownloadBar.vue index 72cb4c4..cceadd9 100644 --- a/src/components/downloads/TheDownloadBar.vue +++ b/src/components/downloads/TheDownloadBar.vue @@ -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)