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; 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);
}, },

View file

@ -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 -->