mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-06 08:44:31 +02:00
api/twitter: fix gifs having a wrong file extension in a picker
This commit is contained in:
parent
eab37ae7ff
commit
c33017283d
@ -208,7 +208,7 @@ export default async function({ id, index, toGif, dispatcher, alwaysProxy }) {
|
|||||||
|
|
||||||
let url = bestQuality(content.video_info.variants);
|
let url = bestQuality(content.video_info.variants);
|
||||||
const shouldRenderGif = content.type === "animated_gif" && toGif;
|
const shouldRenderGif = content.type === "animated_gif" && toGif;
|
||||||
const videoFilename = `twitter_${id}_${i + 1}.mp4`;
|
const videoFilename = `twitter_${id}_${i + 1}.${shouldRenderGif ? "gif" : "mp4"}`;
|
||||||
|
|
||||||
let type = "video";
|
let type = "video";
|
||||||
if (shouldRenderGif) type = "gif";
|
if (shouldRenderGif) type = "gif";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user