mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Pass through media variants in API
This commit is contained in:
parent
f610931843
commit
a560204b43
2 changed files with 2 additions and 0 deletions
|
@ -14,6 +14,7 @@ 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,
|
||||
|
|
1
src/types/types.d.ts
vendored
1
src/types/types.d.ts
vendored
|
@ -97,6 +97,7 @@ interface APIMosaicPhoto {
|
|||
interface APIVideo {
|
||||
type: 'video' | 'gif';
|
||||
url: string;
|
||||
variants: TweetMediaFormat[];
|
||||
thumbnail_url: string;
|
||||
width: number;
|
||||
height: number;
|
||||
|
|
Loading…
Add table
Reference in a new issue