mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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 (
|
return (
|
||||||
typeof response === 'object' &&
|
typeof response === 'object' &&
|
||||||
response !== null &&
|
response !== null &&
|
||||||
'__typename' in response &&
|
// @ts-expect-error it's 6 am please let me sleep
|
||||||
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')
|
('__typename' in response && (response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults') || ('legacy' in response && response.legacy?.full_text))
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue