Update strings

This commit is contained in:
dangered wolf 2023-08-21 03:40:03 -04:00
parent b53ef5f91e
commit 86f786b8e5
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 2 deletions

View file

@ -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',
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_TWEET_NOT_FOUND: `Sorry, that post doesn't exist :(`,
ERROR_USER_NOT_FOUND: `Sorry, that user doesn't exist :(`,

View file

@ -17,6 +17,6 @@ export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => {
typeof response === 'object' &&
response !== null &&
'__typename' in response &&
response.__typename === 'Tweet'
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')
);
};