mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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(
|
||||
`<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(
|
||||
'_normal',
|
||||
'_200x200'
|
||||
|
@ -166,6 +167,10 @@ export const handleStatus = async (
|
|||
} else if (media.type === 'video' || media.type === 'animated_gif') {
|
||||
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);
|
||||
|
||||
// Find the variant with the highest bitrate
|
||||
|
|
Loading…
Add table
Reference in a new issue