From 7b97dea61b71c15385efe45c13b463f91d697a8b Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sat, 4 Nov 2023 03:14:54 -0400 Subject: [PATCH] Improve stability of TweetDetail implementation --- src/providers/twitter/conversation.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/providers/twitter/conversation.ts b/src/providers/twitter/conversation.ts index 1911daa..13bde3b 100644 --- a/src/providers/twitter/conversation.ts +++ b/src/providers/twitter/conversation.ts @@ -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); }