mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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;
|
||||
}
|
||||
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);
|
||||
},
|
||||
|
@ -294,21 +281,9 @@ export const constructTwitterThread = async (
|
|||
console.log('Using TweetDetail for request...');
|
||||
response = (await fetchTweetDetail(c, id)) as TweetDetailResult;
|
||||
|
||||
console.log(response);
|
||||
console.log('response', response);
|
||||
|
||||
const firstInstruction = (
|
||||
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) {
|
||||
if (!response?.data) {
|
||||
return { post: null, thread: null, author: null, code: 404 };
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue