From b112bd5a4c5d5821027a12935df29c1786df2eea Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 11 Aug 2022 19:33:22 -0400 Subject: [PATCH] Enforce both minimum and maximum widths --- src/status.ts | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/status.ts b/src/status.ts index 9867459..479a2d4 100644 --- a/src/status.ts +++ b/src/status.ts @@ -112,14 +112,23 @@ export const handleStatus = async ( /* Multiplying by 0.5 is an ugly hack to fix Discord disliking videos that are too large lol */ + let sizeMultiplier = 1; + + if (video.width > 1920 || video.height > 1920) { + sizeMultiplier = 0.5; + } + if (video.width < 400 && video.height < 400) { + sizeMultiplier = 2; + } + headers.push( ``, - ``, - ``, + ``, + ``, ``, ``, - ``, - ``, + ``, + ``, ``, `` );