From a5f483f518de4fa8652c4a00245cb6bfae95b0a2 Mon Sep 17 00:00:00 2001 From: advplyr Date: Thu, 11 Aug 2022 16:49:38 -0500 Subject: [PATCH] Fix:Home page podcast episode progress bar #264 --- components/cards/LazyBookCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cards/LazyBookCard.vue b/components/cards/LazyBookCard.vue index f9bea4d8..4ca2cae9 100644 --- a/components/cards/LazyBookCard.vue +++ b/components/cards/LazyBookCard.vue @@ -250,7 +250,7 @@ export default { return this.store.getters['user/getUserMediaProgress'](this.libraryItemId, this.recentEpisode.id) }, userProgress() { - if (this.episodeProgress) return this.episodeProgress + if (this.recentEpisode) return this.episodeProgress || null if (this.isLocal) return this.store.getters['globals/getLocalMediaProgressById'](this.libraryItemId) return this.store.getters['user/getUserMediaProgress'](this.libraryItemId) },