mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Remove flawed check for private account in tweetdetail
This commit is contained in:
parent
587de53231
commit
1c097e73d6
1 changed files with 2 additions and 27 deletions
|
@ -68,19 +68,6 @@ export const fetchTweetDetail = async (
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
console.log('invalid graphql tweet', conversation);
|
console.log('invalid graphql tweet', conversation);
|
||||||
const firstInstruction = (
|
|
||||||
conversation?.data?.threaded_conversation_with_injections_v2
|
|
||||||
?.instructions?.[0] as TimelineAddEntriesInstruction
|
|
||||||
)?.entries?.[0];
|
|
||||||
if (
|
|
||||||
(
|
|
||||||
(firstInstruction as { content: GraphQLTimelineItem })?.content
|
|
||||||
?.itemContent as GraphQLTimelineTweet
|
|
||||||
)?.tweet_results?.result?.__typename === 'TweetTombstone'
|
|
||||||
) {
|
|
||||||
console.log('tweet is private');
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Array.isArray(conversation?.errors);
|
return Array.isArray(conversation?.errors);
|
||||||
},
|
},
|
||||||
|
@ -294,21 +281,9 @@ export const constructTwitterThread = async (
|
||||||
console.log('Using TweetDetail for request...');
|
console.log('Using TweetDetail for request...');
|
||||||
response = (await fetchTweetDetail(c, id)) as TweetDetailResult;
|
response = (await fetchTweetDetail(c, id)) as TweetDetailResult;
|
||||||
|
|
||||||
console.log(response);
|
console.log('response', response);
|
||||||
|
|
||||||
const firstInstruction = (
|
if (!response?.data) {
|
||||||
response?.data?.threaded_conversation_with_injections_v2
|
|
||||||
?.instructions?.[0] as TimelineAddEntriesInstruction
|
|
||||||
)?.entries?.[0];
|
|
||||||
if (
|
|
||||||
(
|
|
||||||
(firstInstruction as { content: GraphQLTimelineItem })?.content
|
|
||||||
?.itemContent as GraphQLTimelineTweet
|
|
||||||
)?.tweet_results?.result?.__typename === 'TweetTombstone' /* If a tweet is private */
|
|
||||||
) {
|
|
||||||
console.log('tweet is private');
|
|
||||||
return { post: null, thread: null, author: null, code: 401 };
|
|
||||||
} else if (!response?.data) {
|
|
||||||
return { post: null, thread: null, author: null, code: 404 };
|
return { post: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue