rename fetchUsingGuest to fetchConversation

This commit is contained in:
dangered wolf 2022-09-16 20:18:38 -04:00
parent f67d834876
commit 94d1f6d56a
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

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