mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-09-03 06:22:25 +08:00
🐛 fix empty weibo parse error
This commit is contained in:
parent
0d73d74287
commit
95a2e48019
@ -67,7 +67,7 @@ class Weibo(NewMessage):
|
|||||||
"https://m.weibo.cn/api/container/getIndex?", params=params, timeout=4.0
|
"https://m.weibo.cn/api/container/getIndex?", params=params, timeout=4.0
|
||||||
)
|
)
|
||||||
res_data = json.loads(res.text)
|
res_data = json.loads(res.text)
|
||||||
if not res_data["ok"]:
|
if not res_data["ok"] and res_data["msg"] != "这里还没有内容":
|
||||||
raise ApiError(res.request.url)
|
raise ApiError(res.request.url)
|
||||||
custom_filter: Callable[[RawPost], bool] = lambda d: d["card_type"] == 9
|
custom_filter: Callable[[RawPost], bool] = lambda d: d["card_type"] == 9
|
||||||
return list(filter(custom_filter, res_data["data"]["cards"]))
|
return list(filter(custom_filter, res_data["data"]["cards"]))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user