Moved drivers/guest to fetch

This commit is contained in:
dangered wolf 2022-07-14 11:55:45 -04:00
parent e2a2ef3ec8
commit 0f551437af
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -32,10 +32,11 @@ export const fetchUsingGuest = async (status: string): Promise<TweetPartial> =>
)
).json()) as TimelineBlobPartial;
console.log(conversation);
const tweet = conversation?.globalObjects?.tweets?.[status] || {};
/*
With v2 conversation API we re-add the user object ot the tweet because
Twitter stores it separately in the conversation API.
*/
tweet.user = conversation?.globalObjects?.users?.[tweet.user_id_str] || {};
return tweet;