Skip to content

Commit

Permalink
Add ignoring errors return by parser, if it managed to parse the feed
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Mar 26, 2024
1 parent dd3d4fe commit 30cad1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podcast_downloader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def configuration_to_function_rss_to_name(
continue

feed = load_feed(rss_source_link)
if feed.bozo:
if feed.bozo and len(feed.entries) == 0:
logger.error(
f"Error while checking the link: '{rss_source_link}': {feed['bozo_exception']}"
)
Expand Down

0 comments on commit 30cad1f

Please sign in to comment.