Skip to content

Commit

Permalink
Fix podcast episode rss feed search showing all episodes are downloaded
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Oct 28, 2023
1 parent a9f74ac commit 2c9f2e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/modals/podcast/EpisodeFeed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 2c9f2e0

Please sign in to comment.