fix(route): twitter quotes (#11610)

This commit is contained in:
Tony 2023-01-12 08:47:21 -11:00 committed by GitHub
parent 2b9fd19c1c
commit 762e67d81e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ const ProcessFeed = (ctx, { data = [] }, params = {}) => {
(item.is_quote_status && {
links: [
{
url: `https://twitter.com/${item.quoted_status.user?.screen_name}/status/${item.quoted_status.id_str}`,
url: `https://twitter.com/${item.quoted_status?.user?.screen_name}/status/${item.quoted_status?.id_str}`,
content_html: quote,
type: 'quote',
},