We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a94bb commit 1ae6dbeCopy full SHA for 1ae6dbe
zulip/integrations/rss/rss-bot
@@ -239,7 +239,7 @@ for feed_url in feed_urls:
239
240
unhashed_entries: List[tuple[Any, str, float]] = []
241
data = feedparser.parse(feed_url)
242
- feed_name: str = data.feed.title or feed_url
+ feed_name: str = getattr(data.feed, "title", None) or feed_url
243
# Safeguard to not process older entries in unordered feeds
244
entry_threshold = time.time() - opts.earliest_entry_age * 60 * 60 * 24
245
0 commit comments