Revert "Pass through media variants in API"

This reverts commit a560204b43.
This commit is contained in:
dangered wolf 2022-09-03 05:18:28 -04:00
parent cb8333ddd0
commit 496b88e23b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 0 additions and 2 deletions

View file

@ -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,

View file

@ -97,7 +97,6 @@ interface APIMosaicPhoto {
interface APIVideo {
type: 'video' | 'gif';
url: string;
variants: TweetMediaFormat[];
thumbnail_url: string;
width: number;
height: number;