Improve stability of TweetDetail implementation

This commit is contained in:
dangered wolf 2023-11-04 03:14:54 -04:00
parent fe77a624f1
commit 7b97dea61b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -185,6 +185,10 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
| GraphQLModuleTweetEntry;
const content =
(entry as GraphQLModuleTweetEntry)?.item ?? (entry as GraphQLTimelineTweetEntry)?.content;
if (typeof content === 'undefined') {
return;
}
if (content.__typename === 'TimelineTimelineItem') {
const itemContentType = content.itemContent?.__typename;
if (itemContentType === 'TimelineTweet') {
@ -204,7 +208,7 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
content.items.forEach(item => {
const itemContentType = item.item.itemContent.__typename;
if (itemContentType === 'TimelineTweet') {
const entryType = item.item.itemContent.tweet_results.result.__typename;
const entryType = item.item.itemContent.tweet_results?.result?.__typename;
if (entryType === 'Tweet') {
bucket.tweets.push(item.item.itemContent.tweet_results.result as GraphQLTweet);
}