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