Update episode list item to fallback to using description if subtitle is not set, matching latest page

This commit is contained in:
advplyr 2025-01-07 15:21:11 -06:00
parent e6181196a7
commit 1632d8edee

View File

@ -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 || ''