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