From 496b88e23b04bd2e7e45413ba266fac9b5d9daa7 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sat, 3 Sep 2022 05:18:28 -0400 Subject: [PATCH] Revert "Pass through media variants in API" This reverts commit a560204b431fb66d50a96436b534f5ea4852cb61. --- src/helpers/media.ts | 1 - src/types/types.d.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/helpers/media.ts b/src/helpers/media.ts index a9b9c09..811de64 100644 --- a/src/helpers/media.ts +++ b/src/helpers/media.ts @@ -14,7 +14,6 @@ export const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => { ); return { url: bestVariant?.url || '', - variants: media.video_info?.variants || [], thumbnail_url: media.media_url_https, duration: (media.video_info?.duration_millis || 0) / 1000, width: media.original_info.width, diff --git a/src/types/types.d.ts b/src/types/types.d.ts index cfb3d34..c89ea29 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -97,7 +97,6 @@ interface APIMosaicPhoto { interface APIVideo { type: 'video' | 'gif'; url: string; - variants: TweetMediaFormat[]; thumbnail_url: string; width: number; height: number;