mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix broken instant view
This commit is contained in:
parent
a9ca1fcf43
commit
bc5e58823a
2 changed files with 6 additions and 5 deletions
|
@ -69,7 +69,8 @@ export const fetchTweetDetail = async (
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
console.log('invalid graphql tweet', tweet);
|
console.log('invalid graphql tweet', tweet);
|
||||||
console.log('from response', response)
|
console.log('finding status', status);
|
||||||
|
console.log('from response', JSON.stringify(response))
|
||||||
|
|
||||||
return Array.isArray(conversation?.errors);
|
return Array.isArray(conversation?.errors);
|
||||||
},
|
},
|
||||||
|
|
|
@ -16,7 +16,7 @@ const populateUserLinks = (status: APIStatus, text: string): string => {
|
||||||
return text;
|
return text;
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateStatusMedia = (status: APIStatus): string => {
|
const generateStatusMedia = (status: APIStatus, author: APIUser): string => {
|
||||||
let media = '';
|
let media = '';
|
||||||
if (status.media?.all?.length) {
|
if (status.media?.all?.length) {
|
||||||
status.media.all.forEach(mediaItem => {
|
status.media.all.forEach(mediaItem => {
|
||||||
|
@ -30,10 +30,10 @@ const generateStatusMedia = (status: APIStatus): string => {
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'video':
|
case 'video':
|
||||||
media += `<video src="${mediaItem.url}" alt="${status.author.name}'s video. Alt text not available."/>`;
|
media += `<video src="${mediaItem.url}" alt="${author.name}'s video. Alt text not available."/>`;
|
||||||
break;
|
break;
|
||||||
case 'gif':
|
case 'gif':
|
||||||
media += `<video src="${mediaItem.url}" alt="${status.author.name}'s gif. Alt text not available."/>`;
|
media += `<video src="${mediaItem.url}" alt="${author.name}'s gif. Alt text not available."/>`;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -172,7 +172,7 @@ const generateStatus = (status: APIStatus, author: APIUser, isQuote = false): st
|
||||||
return `<!-- Telegram Instant View -->
|
return `<!-- Telegram Instant View -->
|
||||||
{quoteHeader}
|
{quoteHeader}
|
||||||
<!-- Embed media -->
|
<!-- Embed media -->
|
||||||
${generateStatusMedia(status)}
|
${generateStatusMedia(status, author)}
|
||||||
<!-- Translated text (if applicable) -->
|
<!-- Translated text (if applicable) -->
|
||||||
${translatedText ? translatedText : notApplicableComment}
|
${translatedText ? translatedText : notApplicableComment}
|
||||||
<!-- Embed Status text -->
|
<!-- Embed Status text -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue