mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fixed animated GIFs not embedding
This commit is contained in:
parent
3706d45e51
commit
d889ee9d16
1 changed files with 3 additions and 2 deletions
|
@ -163,15 +163,16 @@ export const handleStatus = async (
|
||||||
headers.push(`<meta name="twitter:card" content="summary_large_image"/>`);
|
headers.push(`<meta name="twitter:card" content="summary_large_image"/>`);
|
||||||
pushedCardType = true;
|
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}"/>`);
|
headers.push(`<meta name="twitter:image" content="${media.media_url_https}"/>`);
|
||||||
|
|
||||||
authorText = encodeURIComponent(text);
|
authorText = encodeURIComponent(text);
|
||||||
|
|
||||||
// Find the variant with the highest bitrate
|
// Find the variant with the highest bitrate
|
||||||
let bestVariant = media.video_info?.variants?.reduce?.((a, b) =>
|
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(
|
headers.push(
|
||||||
`<meta name="twitter:card" content="player"/>`,
|
`<meta name="twitter:card" content="player"/>`,
|
||||||
`<meta name="twitter:player:stream" content="${bestVariant?.url}"/>`,
|
`<meta name="twitter:player:stream" content="${bestVariant?.url}"/>`,
|
||||||
|
|
Loading…
Add table
Reference in a new issue