mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +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') {
|
if (content.__typename === 'TimelineTimelineItem') {
|
||||||
const itemContentType = content.itemContent?.__typename;
|
const itemContentType = content.itemContent?.__typename;
|
||||||
if (itemContentType === 'TimelineTweet') {
|
if (itemContentType === 'TimelineTweet') {
|
||||||
const entryType = content.itemContent.tweet_results.result.__typename;
|
const entryType = content.itemContent.tweet_results.result?.__typename;
|
||||||
if (entryType === 'Tweet') {
|
if (entryType === 'Tweet') {
|
||||||
bucket.statuses.push(
|
bucket.statuses.push(
|
||||||
content.itemContent.tweet_results.result as GraphQLTwitterStatus
|
content.itemContent.tweet_results.result as GraphQLTwitterStatus
|
||||||
|
|
Loading…
Add table
Reference in a new issue