mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-27 16:29:30 +01:00
Fix podcast episode rss feed search showing all episodes are downloaded
This commit is contained in:
parent
a9f74ace5a
commit
2c9f2e0d68
@ -93,7 +93,7 @@ export default {
|
||||
return this.libraryItem.media.metadata.title || 'Unknown'
|
||||
},
|
||||
allDownloaded() {
|
||||
return !this.episodesCleaned.some((episode) => this.getIsEpisodeDownloaded(episode))
|
||||
return !this.episodesCleaned.some((episode) => !this.getIsEpisodeDownloaded(episode))
|
||||
},
|
||||
episodesSelected() {
|
||||
return Object.keys(this.selectedEpisodes).filter((key) => !!this.selectedEpisodes[key])
|
||||
|
Loading…
Reference in New Issue
Block a user