mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-29 01:08:56 +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'
|
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…
Reference in New Issue
Block a user