From a9becf85e0159269d6fb6232922eedcad5a316b4 Mon Sep 17 00:00:00 2001 From: Rick <59314774+techmovie@users.noreply.github.com> Date: Mon, 13 Nov 2023 19:52:59 +0800 Subject: [PATCH] fix(route): the attribute status.activity now is empty(#13770) (#13780) Co-authored-by: techmovie --- lib/v2/douban/people/status.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/v2/douban/people/status.js b/lib/v2/douban/people/status.js index 8d47b154a..4f40c2cc7 100644 --- a/lib/v2/douban/people/status.js +++ b/lib/v2/douban/people/status.js @@ -26,7 +26,7 @@ function tryFixStatus(status) { isFixSuccess: false, why: status.msg ? status.msg : '[ 内容已被设为不可见 ]', }; - } else if (!status.activity || status.text === undefined || status.text === null || !status.uri) { + } else if (status.text === undefined || status.text === null || !status.uri) { result = { isFixSuccess: false, why: status.msg ? status.msg : '[ 内容已不可访问 ]',