From 6f59b5ba67327f2d7fb72598c4f09455ed40c30f Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Wed, 3 Aug 2022 18:49:07 -0400 Subject: [PATCH] Fixes #17 --- src/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status.ts b/src/status.ts index 2cd8572..0743176 100644 --- a/src/status.ts +++ b/src/status.ts @@ -62,7 +62,7 @@ export const handleStatus = async ( /* Use quote media if there is no media */ if (!tweet.media && tweet.quote?.media) { tweet.media = tweet.quote.media; - tweet.twitter_card = 'summary_large_image'; + tweet.twitter_card = tweet.quote.twitter_card; } let authorText = getAuthorText(tweet) || Strings.DEFAULT_AUTHOR_TEXT;