diff --git a/components/tables/podcast/EpisodesTable.vue b/components/tables/podcast/EpisodesTable.vue index 5a62ea52..a33f58df 100644 --- a/components/tables/podcast/EpisodesTable.vue +++ b/components/tables/podcast/EpisodesTable.vue @@ -234,7 +234,7 @@ export default { }, sortDesc: { get() { - const desc = this.$store.getters['user/getUserSetting']('podcastEpisodesOrderDesc') + const desc = this.$store.state.user.settings.podcastEpisodesOrderDesc if (desc === null || desc === undefined) return this.mediaMetadata.type === 'episodic' return desc },