diff --git a/client/components/modals/podcast/EpisodeFeed.vue b/client/components/modals/podcast/EpisodeFeed.vue index 508409cd..e4a23678 100644 --- a/client/components/modals/podcast/EpisodeFeed.vue +++ b/client/components/modals/podcast/EpisodeFeed.vue @@ -81,7 +81,7 @@ export default { }, selectAll: { get() { - return this.episodesSelected.length == this.episodes.length + return this.episodesSelected.length == this.episodes.filter((_, index) => !(this.episodes[index].enclosure && this.itemEpisodeMap[this.episodes[index].enclosure.url])).length }, set(val) { for (const key in this.selectedEpisodes) { diff --git a/client/nuxt.config.js b/client/nuxt.config.js index 2a583388..410218f8 100644 --- a/client/nuxt.config.js +++ b/client/nuxt.config.js @@ -136,6 +136,6 @@ module.exports = { }, server: { port: process.env.NODE_ENV === 'production' ? 80 : 3000, - host: process.env.NODE_ENV === 'production' ? '0.0.0.0' : 'localhost' + host: '0.0.0.0' } }