From 0b68161e68c669754acd7b2d99c85e20ef61f4e6 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 11 Mar 2024 20:59:36 -0400 Subject: [PATCH] Rewrite fix to allow for any format order #711 --- src/helpers/media.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/helpers/media.ts b/src/helpers/media.ts index 8227cd2..960a60e 100644 --- a/src/helpers/media.ts +++ b/src/helpers/media.ts @@ -10,8 +10,10 @@ export const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => { }; } else if (media.type === 'video' || media.type === 'animated_gif') { /* Find the variant with the highest bitrate */ - const bestVariant = media.video_info?.variants?.reduce?.((a, b) => - !a.url.includes('/hevc/') && (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b + const bestVariant = media.video_info?.variants?.filter?.((format) => { + return !format.url.includes('hevc') + }).reduce?.((a, b) => + (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b ); return { url: bestVariant?.url || '',