mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-06 00:10:02 +00:00
twitter: handle no media properly
This commit is contained in:
parent
f34f6d131c
commit
2cb99880d6
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ export default async function({ id, index, toGif }) {
|
|||
const baseTweet = tweet.data.tweetResult.result.legacy,
|
||||
repostedTweet = baseTweet.retweeted_status_result?.result.legacy.extended_entities;
|
||||
|
||||
let media = (repostedTweet?.media || baseTweet.extended_entities.media);
|
||||
let media = (repostedTweet?.media || baseTweet?.extended_entities?.media);
|
||||
media = media?.filter(m => m.video_info?.variants?.length);
|
||||
|
||||
// check if there's a video at given index (/video/<index>)
|
||||
|
|
Loading…
Reference in a new issue