mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Native multi-image overrides videos
This commit is contained in:
parent
e174ffdbac
commit
ea11c19caf
1 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@ export const handleStatus = async (
|
|||
/* This status has a video to render. */
|
||||
break;
|
||||
}
|
||||
} else if (media?.videos) {
|
||||
} else if (media?.videos && !flags.nativeMultiImage) {
|
||||
const instructions = renderVideo(
|
||||
{ status: status, userAgent: userAgent, text: newText },
|
||||
media.videos[0]
|
||||
|
@ -330,7 +330,7 @@ export const handleStatus = async (
|
|||
);
|
||||
headers.push(...instructions.addHeaders);
|
||||
}
|
||||
if (status.media?.external && !status.media.videos?.length) {
|
||||
if (status.media?.external && !status.media.videos?.length && !flags.nativeMultiImage) {
|
||||
const { external } = status.media;
|
||||
authorText = newText || '';
|
||||
headers.push(
|
||||
|
|
Loading…
Add table
Reference in a new issue