From eda58eea61ea1ac9cef6fd7f13f065af3858b1b3 Mon Sep 17 00:00:00 2001 From: Hiller Liao Date: Sun, 22 Dec 2024 16:19:03 +0800 Subject: [PATCH] optimize feed title for bbwc --- rsshub/spiders/bbwc/realtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsshub/spiders/bbwc/realtime.py b/rsshub/spiders/bbwc/realtime.py index e13ef3c..e67f59d 100644 --- a/rsshub/spiders/bbwc/realtime.py +++ b/rsshub/spiders/bbwc/realtime.py @@ -22,7 +22,7 @@ def ctx(category=''): print(posts) posts = json.loads(posts.text)['data']['list'] return { - 'title': f'{category} - 即时新闻 - 商业周刊', + 'title': f'即时新闻 - 商业周刊', 'link': f'{domain}/realtime/index.html', 'description': f'抓取彭博商业周刊即时新闻栏目的快讯', 'author': 'hillerliao',