From 07e776832e8a85f9f11d5eebe932b8ffce7d5ac0 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 15 Jul 2022 01:12:06 -0400 Subject: [PATCH] Fix Discord bug w/ long statuses containing videos --- src/status.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/status.ts b/src/status.ts index 1cb0e86..85b9560 100644 --- a/src/status.ts +++ b/src/status.ts @@ -114,6 +114,7 @@ export const handleStatus = async ( headers.push( ``, + ``, ``); + if (userAgent && userAgent?.indexOf?.('Discord') > -1) { + text = text.substr(0, 179); + } + authorText = encodeURIComponent(text); // Find the variant with the highest bitrate