See #170: fixed several feed parsing issues, again 2

This commit is contained in:
Eliot Berriot 2020-03-13 16:16:47 +01:00
parent d591292a90
commit 21972d9630
No known key found for this signature in database
GPG key ID: 6B501DFD73514E14
2 changed files with 15 additions and 5 deletions

View file

@ -989,3 +989,5 @@ PODCASTS_THIRD_PARTY_VISIBILITY = env("PODCASTS_THIRD_PARTY_VISIBILITY", default
PODCASTS_RSS_FEED_REFRESH_DELAY = env.int(
"PODCASTS_RSS_FEED_REFRESH_DELAY", default=60 * 60 * 24
)
# maximum items loaded through XML feed
PODCASTS_RSS_FEED_MAX_ITEMS = env.int("PODCASTS_RSS_FEED_MAX_ITEMS", default=250)