Fix broken instant view

This commit is contained in:
dangered wolf 2024-02-29 18:42:49 -05:00
parent a9ca1fcf43
commit bc5e58823a
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 6 additions and 5 deletions

View file

@ -69,7 +69,8 @@ export const fetchTweetDetail = async (
return true;
}
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);
},

View file

@ -16,7 +16,7 @@ const populateUserLinks = (status: APIStatus, text: string): string => {
return text;
};
const generateStatusMedia = (status: APIStatus): string => {
const generateStatusMedia = (status: APIStatus, author: APIUser): string => {
let media = '';
if (status.media?.all?.length) {
status.media.all.forEach(mediaItem => {
@ -30,10 +30,10 @@ const generateStatusMedia = (status: APIStatus): string => {
});
break;
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;
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;
}
});
@ -172,7 +172,7 @@ const generateStatus = (status: APIStatus, author: APIUser, isQuote = false): st
return `<!-- Telegram Instant View -->
{quoteHeader}
<!-- Embed media -->
${generateStatusMedia(status)}
${generateStatusMedia(status, author)}
<!-- Translated text (if applicable) -->
${translatedText ? translatedText : notApplicableComment}
<!-- Embed Status text -->