diff --git a/src/embed/status.ts b/src/embed/status.ts index c51e01a..16caa1c 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -206,6 +206,17 @@ export const handleStatus = async ( if (instructions.siteName) { siteName = instructions.siteName; } + } else if (tweet.media?.photos) { + const instructions = renderPhoto( + { + tweet: tweet, + authorText: authorText, + engagementText: engagementText, + userAgent: userAgent + }, + tweet.media?.photos[0] + ); + headers.push(...instructions.addHeaders); } else if (tweet.media?.external) { const { external } = tweet.media; authorText = newText || ''; diff --git a/src/render/photo.ts b/src/render/photo.ts index 5d8acfc..958ace2 100644 --- a/src/render/photo.ts +++ b/src/render/photo.ts @@ -8,7 +8,10 @@ export const renderPhoto = ( const { tweet, engagementText, authorText, isOverrideMedia, userAgent } = properties; const instructions: ResponseInstructions = { addHeaders: [] }; - if (!tweet.media?.mosaic || isOverrideMedia) { + if ( + (tweet.media?.photos?.length || 0) > 1 && + (!tweet.media?.mosaic || isOverrideMedia) + ) { photo = photo as APIPhoto; const all = tweet.media?.all as APIMedia[];