Fixed download bar not completed when item is already downloaded
This commit is contained in:
parent
90f52faad2
commit
a63826a369
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user