diff --git a/src/api.ts b/src/api.ts index 5ae648e..bf647eb 100644 --- a/src/api.ts +++ b/src/api.ts @@ -1,6 +1,6 @@ import { renderCard } from './helpers/card'; import { Constants } from './constants'; -import { fetchUsingGuest } from './fetch'; +import { fetchConversation } from './fetch'; import { linkFixer } from './helpers/linkFixer'; import { handleMosaic } from './helpers/mosaic'; import { colorFromPalette } from './helpers/palette'; @@ -141,7 +141,7 @@ export const statusAPI = async ( language: string | undefined, event: FetchEvent ): Promise => { - const conversation = await fetchUsingGuest(status, event); + const conversation = await fetchConversation(status, event); const tweet = conversation?.globalObjects?.tweets?.[status] || {}; /* Fallback for if Tweet did not load */