mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-06 07:25:03 +02:00
Fix:Podcast episode downloads where RSS feed uses the same title #1802
This commit is contained in:
parent
7a0f27e3cc
commit
ea79948122
3 changed files with 14 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue