mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fixed #23
This commit is contained in:
parent
6eed8f9d4e
commit
4fa983b8ea
1 changed files with 2 additions and 1 deletions
|
@ -52,7 +52,8 @@ export const handleStatus = async (
|
|||
if (tweet.media.video) {
|
||||
redirectUrl = tweet.media.video.url;
|
||||
} else if (tweet.media.photos) {
|
||||
redirectUrl = (tweet.media.photos[mediaNumber || 0] || tweet.media.photos[0]).url;
|
||||
const photos = tweet.media.photos;
|
||||
redirectUrl = (photos[(mediaNumber || 1) - 1] || photos[0]).url;
|
||||
}
|
||||
if (redirectUrl) {
|
||||
return { response: Response.redirect(redirectUrl, 302) };
|
||||
|
|
Loading…
Add table
Reference in a new issue