diff --git a/src/api.ts b/src/api.ts index 90bb46e..5ae648e 100644 --- a/src/api.ts +++ b/src/api.ts @@ -138,9 +138,10 @@ const populateTweetProperties = async ( available for free using api.fxtwitter.com. */ export const statusAPI = async ( status: string, - language: string | undefined + language: string | undefined, + event: FetchEvent ): Promise => { - const conversation = await fetchUsingGuest(status); + const conversation = await fetchUsingGuest(status, event); const tweet = conversation?.globalObjects?.tweets?.[status] || {}; /* Fallback for if Tweet did not load */ diff --git a/src/fetch.ts b/src/fetch.ts index ef9f6c8..09786e9 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -1,6 +1,6 @@ import { Constants } from './constants'; -export const fetchUsingGuest = async (status: string): Promise => { +export const fetchUsingGuest = async (status: string, event: FetchEvent): Promise => { let apiAttempts = 0; let cachedTokenFailed = false; @@ -121,9 +121,8 @@ export const fetchUsingGuest = async (status: string): Promise => { console.log('Direct?', flags?.direct); - const api = await statusAPI(status, language); + const api = await statusAPI(status, language, event as FetchEvent); const tweet = api?.tweet as APITweet; /* Catch this request if it's an API response */