Merge pull request #1455 from anstosa/defaultpodcastsort

Sensible default sort for podcasts
This commit is contained in:
advplyr 2025-01-26 12:49:48 -06:00 committed by GitHub
commit 08651d28ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -278,6 +278,7 @@ export default {
return this.$store.getters['user/getUserMediaProgress'](this.libraryItemId, episode.id)
},
init() {
this.sortDesc = this.mediaMetadata.type === 'episodic'
this.episodesCopy = this.episodes.map((ep) => {
return { ...ep }
})