diff --git a/src/plugins/hk_reporter/platform/rss.py b/src/plugins/hk_reporter/platform/rss.py index 07becf8..62c5532 100644 --- a/src/plugins/hk_reporter/platform/rss.py +++ b/src/plugins/hk_reporter/platform/rss.py @@ -15,7 +15,8 @@ async def get_rss_raw_data(url) -> str: async def get_rss_info(url) -> str: data = await get_rss_raw_data(url) - return data.feed.title + feed = feedparser.parse(data.text) + return feed.feed.title @Singleton class Rss: