From 1632d8edeed9c8f7d1345dba1c064f6fddac6c6d Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 7 Jan 2025 15:21:11 -0600 Subject: [PATCH] Update episode list item to fallback to using description if subtitle is not set, matching latest page --- client/components/tables/podcast/LazyEpisodeRow.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/tables/podcast/LazyEpisodeRow.vue b/client/components/tables/podcast/LazyEpisodeRow.vue index 20e6b9f9..8709b1ad 100644 --- a/client/components/tables/podcast/LazyEpisodeRow.vue +++ b/client/components/tables/podcast/LazyEpisodeRow.vue @@ -96,7 +96,7 @@ export default { return this.episode?.title || '' }, episodeSubtitle() { - return this.episode?.subtitle || '' + return this.episode?.subtitle || this.episode?.description || '' }, episodeType() { return this.episode?.episodeType || ''