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) {