mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-02 12:09:11 +01:00
Encode podcast url when downloading episode
This commit is contained in:
parent
911c854365
commit
956678c08c
@ -50,7 +50,7 @@ class PodcastEpisodeDownload {
|
|||||||
setData(podcastEpisode, libraryItem, isAutoDownload) {
|
setData(podcastEpisode, libraryItem, isAutoDownload) {
|
||||||
this.id = getId('epdl')
|
this.id = getId('epdl')
|
||||||
this.podcastEpisode = podcastEpisode
|
this.podcastEpisode = podcastEpisode
|
||||||
this.url = podcastEpisode.enclosure.url
|
this.url = encodeURI(podcastEpisode.enclosure.url)
|
||||||
this.libraryItem = libraryItem
|
this.libraryItem = libraryItem
|
||||||
this.isAutoDownload = isAutoDownload
|
this.isAutoDownload = isAutoDownload
|
||||||
this.createdAt = Date.now()
|
this.createdAt = Date.now()
|
||||||
|
Loading…
Reference in New Issue
Block a user