mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Bug fix fallback
This commit is contained in:
parent
57620d3004
commit
7dce798648
3 changed files with 5 additions and 5 deletions
|
@ -13,4 +13,4 @@ SENTRY_DSN = ""
|
|||
SENTRY_AUTH_TOKEN = ""
|
||||
SENTRY_ORG = ""
|
||||
SENTRY_PROJECT = ""
|
||||
API_FALLBACK_DOMAIN = ""
|
||||
API_FALLBACK_DOMAIN = "https://"
|
|
@ -141,7 +141,7 @@ export const statusAPI = async (
|
|||
language: string | undefined,
|
||||
event: FetchEvent
|
||||
): Promise<APIResponse> => {
|
||||
const conversation = await fetchConversation(status, event);
|
||||
let conversation = await fetchConversation(status, event);
|
||||
let tweet = conversation?.globalObjects?.tweets?.[status] || {};
|
||||
|
||||
if (tweet.retweeted_status_id_str) {
|
||||
|
@ -156,8 +156,8 @@ export const statusAPI = async (
|
|||
if (conversation.timeline?.instructions?.length > 0) {
|
||||
// Try request again with fallback this time
|
||||
console.log('No Tweet was found, trying fallback in case of geo-restriction');
|
||||
const conversationFallback = await fetchConversation(status, event, true);
|
||||
tweet = conversationFallback?.globalObjects?.tweets?.[status] || {};
|
||||
conversation = await fetchConversation(status, event, true);
|
||||
tweet = conversation?.globalObjects?.tweets?.[status] || {};
|
||||
|
||||
if (typeof tweet.full_text !== 'undefined') {
|
||||
console.log('Successfully loaded Tweet, requiring fallback');
|
||||
|
|
|
@ -125,7 +125,7 @@ export const twitterFetch = async (
|
|||
} catch (e: unknown) {
|
||||
/* We'll usually only hit this if we get an invalid response from Twitter.
|
||||
It's uncommon, but it happens */
|
||||
console.error('Unknown error while fetching from API');
|
||||
console.error('Unknown error while fetching from API', e);
|
||||
event &&
|
||||
event.waitUntil(
|
||||
cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })
|
||||
|
|
Loading…
Add table
Reference in a new issue