Bug fix fallback

This commit is contained in:
dangered wolf 2023-04-06 17:56:21 -04:00
parent 57620d3004
commit 7dce798648
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 5 additions and 5 deletions

View file

@ -13,4 +13,4 @@ SENTRY_DSN = ""
SENTRY_AUTH_TOKEN = ""
SENTRY_ORG = ""
SENTRY_PROJECT = ""
API_FALLBACK_DOMAIN = ""
API_FALLBACK_DOMAIN = "https://"

View file

@ -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');

View file

@ -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 })