From 5b33ae3bb6e78c03052b6305c29548f2e69a1e0f Mon Sep 17 00:00:00 2001 From: shanmite Date: Fri, 12 Apr 2024 07:59:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=BB=E5=8F=96uid=E5=87=BA=E9=94=99?= =?UTF-8?q?=20(#369)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed #369 --- lib/net/bili.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/net/bili.js b/lib/net/bili.js index 0a7afafbc..50b539a69 100644 --- a/lib/net/bili.js +++ b/lib/net/bili.js @@ -440,10 +440,10 @@ const bili_client = { { card } = data || {}; switch (code) { case 0: - if (card) { + if (card && responseText.length > 100) { return [false, card, `ok`]; } else { - return [false, undefined, `动态不存在`]; + return [false, undefined, `获取动态数据异常:\n${responseText}`]; } case 500207: return [false, undefined, `该动态为包月充电专属可以给UP主充电后观看`];