mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Revert "Prioritize videos above mosaic"
This reverts commit 7a8d3a3bed
.
This commit is contained in:
parent
7a8d3a3bed
commit
25a1b7e7ae
1 changed files with 11 additions and 11 deletions
|
@ -217,6 +217,17 @@ 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 },
|
||||||
|
@ -229,17 +240,6 @@ 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(
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue