From 9bc1460e1c3bb5d1a894b190dfd54106286a9d43 Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Sat, 23 Nov 2024 15:47:53 -0800 Subject: [PATCH] Use feed short name when calling retrieve_new_episodes --- podcast_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podcast_bot.py b/podcast_bot.py index 8025758..f8e1f39 100644 --- a/podcast_bot.py +++ b/podcast_bot.py @@ -212,7 +212,7 @@ def process_feeds( new_episodes: list[dict[str, Any]] = retrieve_new_episodes( feed_episodes=episodes, feed_database=feed_database, - feed_name=feed.name, + feed_name=feed.short_name, guid_filter=feed.guid_filter, days=feed.recent_days, dry_run=dry_run,