From 476f5154b7deec8ac4c49642a62c9079646f7eae Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 24 Apr 2023 23:33:37 -0400 Subject: [PATCH] Fixed thing I missed --- src/api/status.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/status.ts b/src/api/status.ts index 3891a1a..b57a797 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -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); }