diff --git a/src/embed/status.ts b/src/embed/status.ts index e1a9aa7..3f6a389 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -217,6 +217,17 @@ export const handleStatus = async ( /* This Tweet has a video to render. */ break; } + } else if (media?.mosaic) { + const instructions = renderPhoto( + { + tweet: tweet, + authorText: authorText, + engagementText: engagementText, + userAgent: userAgent + }, + media.mosaic + ); + headers.push(...instructions.addHeaders); } else if (media?.videos) { const instructions = renderVideo( { tweet: tweet, userAgent: userAgent, text: newText }, @@ -229,17 +240,6 @@ export const handleStatus = async ( if (instructions.siteName) { siteName = instructions.siteName; } - } else if (media?.mosaic) { - const instructions = renderPhoto( - { - tweet: tweet, - authorText: authorText, - engagementText: engagementText, - userAgent: userAgent - }, - media.mosaic - ); - headers.push(...instructions.addHeaders); } else if (media?.photos) { const instructions = renderPhoto( {