Fix single photos

This commit is contained in:
dangered wolf 2023-05-31 16:55:29 -04:00
parent 18b041697c
commit 56a84390f8
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 15 additions and 1 deletions

View file

@ -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 || '';

View file

@ -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[];