Update:Podcast episode downloads using episode title as filename without prefixing episode num

This commit is contained in:
advplyr 2022-10-02 17:12:44 -05:00
parent 803c9699ef
commit 8563bdde74
2 changed files with 2 additions and 6 deletions

View file

@ -103,10 +103,6 @@ class PodcastEpisode {
return this.audioFile.duration
}
get size() { return this.audioFile.metadata.size }
get bestFilename() {
if (this.episode) return `${this.episode} - ${this.title}`
return this.title
}
get enclosureUrl() {
return this.enclosure ? this.enclosure.url : null
}