mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
rename fetchUsingGuest to fetchConversation
This commit is contained in:
parent
f67d834876
commit
94d1f6d56a
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Add table
Reference in a new issue