Fixed thing I missed

This commit is contained in:
dangered wolf 2023-04-24 23:33:37 -04:00
parent 58537e49c0
commit 476f5154b7
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -80,7 +80,6 @@ const populateTweetProperties = async (
} else if (mediaObject.type === 'video' || mediaObject.type === 'gif') {
apiTweet.twitter_card = 'player';
apiTweet.media = apiTweet.media || {};
apiTweet.media.video = mediaObject as APIVideo;
apiTweet.media.videos = apiTweet.media.videos || [];
apiTweet.media.videos.push(mediaObject);
}