Prioritize videos above mosaic

This commit is contained in:
dangered wolf 2023-08-22 16:05:38 -04:00
parent a1ee2c42f8
commit 7a8d3a3bed
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -217,17 +217,6 @@ export const handleStatus = async (
/* This Tweet has a video to render. */ /* This Tweet has a video to render. */
break; 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) { } else if (media?.videos) {
const instructions = renderVideo( const instructions = renderVideo(
{ tweet: tweet, userAgent: userAgent, text: newText }, { tweet: tweet, userAgent: userAgent, text: newText },
@ -240,6 +229,17 @@ export const handleStatus = async (
if (instructions.siteName) { if (instructions.siteName) {
siteName = 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) { } else if (media?.photos) {
const instructions = renderPhoto( const instructions = renderPhoto(
{ {