mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Fix Discord bug w/ long statuses containing videos
This commit is contained in:
parent
d7fd20c933
commit
07e776832e
1 changed files with 5 additions and 0 deletions
|
@ -114,6 +114,7 @@ export const handleStatus = async (
|
||||||
|
|
||||||
headers.push(
|
headers.push(
|
||||||
`<meta content="${colorOverride}" property="theme-color"/>`,
|
`<meta content="${colorOverride}" property="theme-color"/>`,
|
||||||
|
`<meta property="og:site_name" content="${Constants.BRANDING_NAME}"/>`,
|
||||||
`<meta property="og:image" content="${user?.profile_image_url_https.replace(
|
`<meta property="og:image" content="${user?.profile_image_url_https.replace(
|
||||||
'_normal',
|
'_normal',
|
||||||
'_200x200'
|
'_200x200'
|
||||||
|
@ -166,6 +167,10 @@ export const handleStatus = async (
|
||||||
} else if (media.type === 'video' || media.type === 'animated_gif') {
|
} 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}"/>`);
|
||||||
|
|
||||||
|
if (userAgent && userAgent?.indexOf?.('Discord') > -1) {
|
||||||
|
text = text.substr(0, 179);
|
||||||
|
}
|
||||||
|
|
||||||
authorText = encodeURIComponent(text);
|
authorText = encodeURIComponent(text);
|
||||||
|
|
||||||
// Find the variant with the highest bitrate
|
// Find the variant with the highest bitrate
|
||||||
|
|
Loading…
Add table
Reference in a new issue