Fixed animated GIFs not embedding

This commit is contained in:
dangered wolf 2022-07-14 22:15:07 -04:00
parent 3706d45e51
commit d889ee9d16
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -163,15 +163,16 @@ export const handleStatus = async (
headers.push(`<meta name="twitter:card" content="summary_large_image"/>`);
pushedCardType = true;
}
} else if (media.type === 'video') {
} else if (media.type === 'video' || media.type === 'animated_gif') {
headers.push(`<meta name="twitter:image" content="${media.media_url_https}"/>`);
authorText = encodeURIComponent(text);
// Find the variant with the highest bitrate
let bestVariant = media.video_info?.variants?.reduce?.((a, b) =>
(a.bitrate || 0) > (b.bitrate || 0) ? a : b
(a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
);
headers.push(
`<meta name="twitter:card" content="player"/>`,
`<meta name="twitter:player:stream" content="${bestVariant?.url}"/>`,