Merge pull request #3771 from sbyrx/master

Adds a configuration for podcast feed and episode download timeout
This commit is contained in:
advplyr
2025-01-08 14:10:20 -06:00
committed by GitHub
3 changed files with 8 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ module.exports.getPodcastFeed = (feedUrl, excludeEpisodeMetadata = false) => {
return axios({
url: feedUrl,
method: 'GET',
timeout: 12000,
timeout: global.PodcastDownloadTimeout,
responseType: 'arraybuffer',
headers: {
Accept: 'application/rss+xml, application/xhtml+xml, application/xml, */*;q=0.8',