Fix:Podcast episode downloads where RSS feed uses the same title #1802

This commit is contained in:
advplyr 2023-05-28 11:24:51 -05:00
parent 7a0f27e3cc
commit ea79948122
3 changed files with 14 additions and 2 deletions

View file

@ -109,7 +109,7 @@ class PodcastEpisode {
}
get size() { return this.audioFile.metadata.size }
get enclosureUrl() {
return this.enclosure ? this.enclosure.url : null
return this.enclosure?.url || null
}
get pubYear() {
if (!this.publishedAt) return null