mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-23 04:14:46 +02:00
Fix podcast episode rss feed search showing all episodes are downloaded
This commit is contained in:
parent
a9f74ace5a
commit
2c9f2e0d68
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ export default {
|
||||||
return this.libraryItem.media.metadata.title || 'Unknown'
|
return this.libraryItem.media.metadata.title || 'Unknown'
|
||||||
},
|
},
|
||||||
allDownloaded() {
|
allDownloaded() {
|
||||||
return !this.episodesCleaned.some((episode) => this.getIsEpisodeDownloaded(episode))
|
return !this.episodesCleaned.some((episode) => !this.getIsEpisodeDownloaded(episode))
|
||||||
},
|
},
|
||||||
episodesSelected() {
|
episodesSelected() {
|
||||||
return Object.keys(this.selectedEpisodes).filter((key) => !!this.selectedEpisodes[key])
|
return Object.keys(this.selectedEpisodes).filter((key) => !!this.selectedEpisodes[key])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue