Skip to content

Commit

Permalink
Update episode list item to fallback to using description if subtitle…
Browse files Browse the repository at this point in the history
… is not set, matching latest page
  • Loading branch information
advplyr committed Jan 7, 2025
1 parent e618119 commit 1632d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/tables/podcast/LazyEpisodeRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 || ''
Expand Down

0 comments on commit 1632d8e

Please sign in to comment.