mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Update strings
This commit is contained in:
parent
b53ef5f91e
commit
86f786b8e5
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ This is caused by Twitter API downtime or a new bug. Try again in a little while
|
||||||
FINAL_POLL_RESULTS: 'Final results',
|
FINAL_POLL_RESULTS: 'Final results',
|
||||||
|
|
||||||
ERROR_API_FAIL:
|
ERROR_API_FAIL:
|
||||||
"Post failed to load due to an API error. This is most common with NSFW Posts as Twitter / X currently blocks us from fetching them. We're still working on a fix for that.🙏",
|
"Post failed to load due to an API error. The account may be private or suspended, or there may be another issue :(",
|
||||||
ERROR_PRIVATE: `Sorry, we can't embed this post because the user is private or suspended :(`,
|
ERROR_PRIVATE: `Sorry, we can't embed this post because the user is private or suspended :(`,
|
||||||
ERROR_TWEET_NOT_FOUND: `Sorry, that post doesn't exist :(`,
|
ERROR_TWEET_NOT_FOUND: `Sorry, that post doesn't exist :(`,
|
||||||
ERROR_USER_NOT_FOUND: `Sorry, that user doesn't exist :(`,
|
ERROR_USER_NOT_FOUND: `Sorry, that user doesn't exist :(`,
|
||||||
|
|
|
@ -17,6 +17,6 @@ export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => {
|
||||||
typeof response === 'object' &&
|
typeof response === 'object' &&
|
||||||
response !== null &&
|
response !== null &&
|
||||||
'__typename' in response &&
|
'__typename' in response &&
|
||||||
response.__typename === 'Tweet'
|
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue