Fix Discord bug w/ long statuses containing videos

This commit is contained in:
dangered wolf 2022-07-15 01:12:06 -04:00
parent d7fd20c933
commit 07e776832e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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