fix(route): the attribute status.activity now is empty(#13770) (#13780)

Co-authored-by: techmovie <techmovie@users.noreply.github.com>
This commit is contained in:
Rick 2023-11-13 19:52:59 +08:00 committed by GitHub
parent f4f14bcae7
commit a9becf85e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 : '[ 内容已不可访问 ]',