mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Workaround for GraphQLTweet detector
This commit is contained in:
parent
77bc8b2d33
commit
ec24895ece
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => {
|
|||
return (
|
||||
typeof response === 'object' &&
|
||||
response !== null &&
|
||||
'__typename' in response &&
|
||||
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')
|
||||
// @ts-expect-error it's 6 am please let me sleep
|
||||
('__typename' in response && (response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults') || ('legacy' in response && response.legacy?.full_text))
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue