mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix single photos
This commit is contained in:
parent
18b041697c
commit
56a84390f8
2 changed files with 15 additions and 1 deletions
|
@ -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 || '';
|
||||
|
|
|
@ -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[];
|
||||
|
|
Loading…
Add table
Reference in a new issue