From ba18558f3cbd4e32451897cf62f725e0310b92b4 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 8 Aug 2022 21:15:05 -0400 Subject: [PATCH] Player height/width workaround --- src/status.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/status.ts b/src/status.ts index 7e9965c..98fad05 100644 --- a/src/status.ts +++ b/src/status.ts @@ -105,16 +105,19 @@ export const handleStatus = async ( const { video } = tweet.media; + /* Multiplying by 0.5 is an ugly hack to fix Discord + disliking videos that are too large lol */ + headers.push( ``, - ``, - ``, + ``, + ``, ``, ``, - ``, - ``, + ``, + ``, ``, - `` + `` ); } @@ -186,7 +189,7 @@ export const handleStatus = async ( /* Poll renderer */ if (tweet.poll) { const { poll } = tweet; - let barLength = 34; + let barLength = 36; let str = ''; if (userAgent?.indexOf('Telegram') !== -1) {