Skip to content

Commit

Permalink
Merge pull request #20 from Clickman6/lord
Browse files Browse the repository at this point in the history
fixup! feat: add episode title
  • Loading branch information
Viiprogrammer authored Feb 6, 2024
2 parents 875094a + 532e17a commit 6d20108
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ export default {
* @return {*}
*/
title () {
return this.$__get(this.episode, 'title')
const name = this.$__get(this.episode, 'name')
return this.$__get(this.episode, 'title') + (name ? '' + name : '')
},
}
Expand Down

0 comments on commit 6d20108

Please sign in to comment.