mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Revert "Pass through media variants in API"
This reverts commit a560204b43
.
This commit is contained in:
parent
cb8333ddd0
commit
496b88e23b
2 changed files with 0 additions and 2 deletions
|
@ -14,7 +14,6 @@ export const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
|
||||||
);
|
);
|
||||||
return {
|
return {
|
||||||
url: bestVariant?.url || '',
|
url: bestVariant?.url || '',
|
||||||
variants: media.video_info?.variants || [],
|
|
||||||
thumbnail_url: media.media_url_https,
|
thumbnail_url: media.media_url_https,
|
||||||
duration: (media.video_info?.duration_millis || 0) / 1000,
|
duration: (media.video_info?.duration_millis || 0) / 1000,
|
||||||
width: media.original_info.width,
|
width: media.original_info.width,
|
||||||
|
|
1
src/types/types.d.ts
vendored
1
src/types/types.d.ts
vendored
|
@ -97,7 +97,6 @@ interface APIMosaicPhoto {
|
||||||
interface APIVideo {
|
interface APIVideo {
|
||||||
type: 'video' | 'gif';
|
type: 'video' | 'gif';
|
||||||
url: string;
|
url: string;
|
||||||
variants: TweetMediaFormat[];
|
|
||||||
thumbnail_url: string;
|
thumbnail_url: string;
|
||||||
width: number;
|
width: number;
|
||||||
height: number;
|
height: number;
|
||||||
|
|
Loading…
Add table
Reference in a new issue