mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Remove deprecated API properties
This commit is contained in:
parent
8a59b94ace
commit
ec8dfbd85a
2 changed files with 0 additions and 11 deletions
|
@ -83,14 +83,6 @@ const populateTweetProperties = async (
|
||||||
apiTweet.media.video = mediaObject as APIVideo;
|
apiTweet.media.video = mediaObject as APIVideo;
|
||||||
apiTweet.media.videos = apiTweet.media.videos || [];
|
apiTweet.media.videos = apiTweet.media.videos || [];
|
||||||
apiTweet.media.videos.push(mediaObject);
|
apiTweet.media.videos.push(mediaObject);
|
||||||
|
|
||||||
apiTweet.media.video = {
|
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-expect-error Temporary warning
|
|
||||||
WARNING:
|
|
||||||
'video is deprecated and will be removed. Please use videos[0] instead.',
|
|
||||||
...mediaObject
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -29,9 +29,6 @@ export const handleMosaic = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
WARNING: 'height and width of mosaic photos are deprecated and will be removed.',
|
|
||||||
height: 0,
|
|
||||||
width: 0,
|
|
||||||
formats: {
|
formats: {
|
||||||
jpeg: `${baseUrl}jpeg/${id}${path}`,
|
jpeg: `${baseUrl}jpeg/${id}${path}`,
|
||||||
webp: `${baseUrl}webp/${id}${path}`
|
webp: `${baseUrl}webp/${id}${path}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue