mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Enforce both minimum and maximum widths
This commit is contained in:
parent
201c9b73b9
commit
b112bd5a4c
1 changed files with 13 additions and 4 deletions
|
@ -112,14 +112,23 @@ export const handleStatus = async (
|
|||
/* Multiplying by 0.5 is an ugly hack to fix Discord
|
||||
disliking videos that are too large lol */
|
||||
|
||||
let sizeMultiplier = 1;
|
||||
|
||||
if (video.width > 1920 || video.height > 1920) {
|
||||
sizeMultiplier = 0.5;
|
||||
}
|
||||
if (video.width < 400 && video.height < 400) {
|
||||
sizeMultiplier = 2;
|
||||
}
|
||||
|
||||
headers.push(
|
||||
`<meta name="twitter:player:stream:content_type" content="${video.format}"/>`,
|
||||
`<meta name="twitter:player:height" content="${video.height*0.5}"/>`,
|
||||
`<meta name="twitter:player:width" content="${video.width*0.5}"/>`,
|
||||
`<meta name="twitter:player:height" content="${video.height*sizeMultiplier}"/>`,
|
||||
`<meta name="twitter:player:width" content="${video.width*sizeMultiplier}"/>`,
|
||||
`<meta name="og:video" content="${video.url}"/>`,
|
||||
`<meta name="og:video:secure_url" content="${video.url}"/>`,
|
||||
`<meta name="og:video:height" content="${video.height*0.5}"/>`,
|
||||
`<meta name="og:video:width" content="${video.width*0.5}"/>`,
|
||||
`<meta name="og:video:height" content="${video.height*sizeMultiplier}"/>`,
|
||||
`<meta name="og:video:width" content="${video.width*sizeMultiplier}"/>`,
|
||||
`<meta name="og:video:type" content="${video.format}"/>`,
|
||||
`<meta name="twitter:image" content="0"/>`
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue