Fixed display bug with retweet statuses

This commit is contained in:
dangered wolf 2023-01-31 13:54:21 -05:00
parent cb4e501d55
commit 68b50a2da0
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 7 additions and 1 deletions

View file

@ -142,7 +142,11 @@ export const statusAPI = async (
event: FetchEvent event: FetchEvent
): Promise<APIResponse> => { ): Promise<APIResponse> => {
const conversation = await fetchConversation(status, event); const conversation = await fetchConversation(status, event);
const tweet = conversation?.globalObjects?.tweets?.[status] || {}; let tweet = conversation?.globalObjects?.tweets?.[status] || {};
if (tweet.retweeted_status_id_str) {
tweet = conversation?.globalObjects?.tweets?.[tweet.retweeted_status_id_str] || {};
}
/* Fallback for if Tweet did not load */ /* Fallback for if Tweet did not load */
if (typeof tweet.full_text === 'undefined') { if (typeof tweet.full_text === 'undefined') {

View file

@ -149,6 +149,8 @@ type TweetPartial = {
source: string; source: string;
full_text: string; full_text: string;
user_id_str: string; user_id_str: string;
retweeted_status_id: number;
retweeted_status_id_str: string;
user?: UserPartial; user?: UserPartial;
}; };