mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fixed display bug with retweet statuses
This commit is contained in:
parent
cb4e501d55
commit
68b50a2da0
2 changed files with 7 additions and 1 deletions
|
@ -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') {
|
||||||
|
|
2
src/types/twitterTypes.d.ts
vendored
2
src/types/twitterTypes.d.ts
vendored
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue