Skip to content

Commit

Permalink
fix(route): the attribute status.activity now is empty(DIYgod#13770)
Browse files Browse the repository at this point in the history
  • Loading branch information
techmovie committed Nov 13, 2023
1 parent f4f14bc commit 6808015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/v2/douban/people/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 : '[ 内容已不可访问 ]',
Expand Down

0 comments on commit 6808015

Please sign in to comment.