From 94d1f6d56a08320d9dd013fd39393d7acd22cbf5 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 16 Sep 2022 20:18:38 -0400 Subject: [PATCH] rename fetchUsingGuest to fetchConversation --- src/api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */