mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Improve stability of TweetDetail implementation
This commit is contained in:
parent
fe77a624f1
commit
7b97dea61b
1 changed files with 5 additions and 1 deletions
|
@ -185,6 +185,10 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
|
||||||
| GraphQLModuleTweetEntry;
|
| GraphQLModuleTweetEntry;
|
||||||
const content =
|
const content =
|
||||||
(entry as GraphQLModuleTweetEntry)?.item ?? (entry as GraphQLTimelineTweetEntry)?.content;
|
(entry as GraphQLModuleTweetEntry)?.item ?? (entry as GraphQLTimelineTweetEntry)?.content;
|
||||||
|
|
||||||
|
if (typeof content === 'undefined') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (content.__typename === 'TimelineTimelineItem') {
|
if (content.__typename === 'TimelineTimelineItem') {
|
||||||
const itemContentType = content.itemContent?.__typename;
|
const itemContentType = content.itemContent?.__typename;
|
||||||
if (itemContentType === 'TimelineTweet') {
|
if (itemContentType === 'TimelineTweet') {
|
||||||
|
@ -204,7 +208,7 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
|
||||||
content.items.forEach(item => {
|
content.items.forEach(item => {
|
||||||
const itemContentType = item.item.itemContent.__typename;
|
const itemContentType = item.item.itemContent.__typename;
|
||||||
if (itemContentType === 'TimelineTweet') {
|
if (itemContentType === 'TimelineTweet') {
|
||||||
const entryType = item.item.itemContent.tweet_results.result.__typename;
|
const entryType = item.item.itemContent.tweet_results?.result?.__typename;
|
||||||
if (entryType === 'Tweet') {
|
if (entryType === 'Tweet') {
|
||||||
bucket.tweets.push(item.item.itemContent.tweet_results.result as GraphQLTweet);
|
bucket.tweets.push(item.item.itemContent.tweet_results.result as GraphQLTweet);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue