mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix tweet.media accidentally being processed on error response
This commit is contained in:
parent
329fe35eec
commit
371a62f1ed
1 changed files with 7 additions and 7 deletions
|
@ -56,13 +56,6 @@ export const handleStatus = async (
|
|||
};
|
||||
}
|
||||
|
||||
let overrideMedia: APIMedia | undefined;
|
||||
|
||||
// Check if mediaNumber exists, and if that media exists in tweet.media.all. If it does, we'll store overrideMedia variable
|
||||
if (mediaNumber && tweet.media && tweet.media.all && tweet.media.all[mediaNumber - 1]) {
|
||||
overrideMedia = tweet.media.all[mediaNumber - 1];
|
||||
}
|
||||
|
||||
/* If there was any errors fetching the Tweet, we'll return it */
|
||||
switch (api.code) {
|
||||
case 401:
|
||||
|
@ -74,6 +67,13 @@ export const handleStatus = async (
|
|||
return returnError(Strings.ERROR_API_FAIL);
|
||||
}
|
||||
|
||||
let overrideMedia: APIMedia | undefined;
|
||||
|
||||
// Check if mediaNumber exists, and if that media exists in tweet.media.all. If it does, we'll store overrideMedia variable
|
||||
if (mediaNumber && tweet.media && tweet.media.all && tweet.media.all[mediaNumber - 1]) {
|
||||
overrideMedia = tweet.media.all[mediaNumber - 1];
|
||||
}
|
||||
|
||||
/* Catch direct media request (d.fxtwitter.com, or .mp4 / .jpg) */
|
||||
if (flags?.direct && !flags?.textOnly && tweet.media) {
|
||||
let redirectUrl: string | null = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue