Update:Clicking local podcast from home page will filter by downloaded episodes #958

This commit is contained in:
advplyr 2023-11-25 13:09:43 -06:00
parent 579785d2c6
commit f9dd8188ee
2 changed files with 7 additions and 2 deletions

View file

@ -297,6 +297,9 @@ export default {
}
},
mounted() {
if (this.$route.query['episodefilter'] === 'downloaded') {
this.filterKey = 'downloaded'
}
this.$socket.$on('episode_download_queued', this.episodeDownloadQueued)
this.$socket.$on('episode_download_started', this.episodeDownloadStarted)
this.$socket.$on('episode_download_finished', this.episodeDownloadFinished)