mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix rare type error caused by invalid tweet data
This commit is contained in:
parent
55c920ecbf
commit
0c89e5b6b3
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
|
|||
if (content.__typename === 'TimelineTimelineItem') {
|
||||
const itemContentType = content.itemContent?.__typename;
|
||||
if (itemContentType === 'TimelineTweet') {
|
||||
const entryType = content.itemContent.tweet_results.result.__typename;
|
||||
const entryType = content.itemContent.tweet_results.result?.__typename;
|
||||
if (entryType === 'Tweet') {
|
||||
bucket.statuses.push(
|
||||
content.itemContent.tweet_results.result as GraphQLTwitterStatus
|
||||
|
|
Loading…
Add table
Reference in a new issue