Fix concurrent podcast download cover issue

This commit is contained in:
Nicholas Wallace
2026-08-27 14:52:14 -07:00
parent 7989607313
commit c800ed727a
8 changed files with 306 additions and 35 deletions
@@ -79,7 +79,9 @@ export default {
this.$store.commit('globals/updateDownloadItemPart', itemPart)
},
onQueueChanged(data) {
if (!data.hasWork) this.$store.commit('globals/clearItemDownloads')
if (data.hasItems === false || (data.hasItems == null && !data.hasWork)) {
this.$store.commit('globals/clearItemDownloads')
}
}
},
async mounted() {
@@ -95,4 +97,4 @@ export default {
this.queueChangedListener?.remove()
}
}
</script>
</script>