mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fix direct media functionality with human user agents
This commit is contained in:
parent
926b47f10b
commit
f3c8c03c4e
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ export const statusRequest = async (c: Context) => {
|
||||||
|
|
||||||
Since we obviously have no media to give the user, we'll just redirect to the Tweet.
|
Since we obviously have no media to give the user, we'll just redirect to the Tweet.
|
||||||
Embeds will return as usual to bots as if direct media was never specified. */
|
Embeds will return as usual to bots as if direct media was never specified. */
|
||||||
if (!isBotUA && !flags.api) {
|
if (!isBotUA && !flags.api && !flags.direct) {
|
||||||
const baseUrl = getBaseRedirectUrl(c);
|
const baseUrl = getBaseRedirectUrl(c);
|
||||||
|
|
||||||
return c.redirect(`${baseUrl}/${handle || 'i'}/status/${id}`, 302);
|
return c.redirect(`${baseUrl}/${handle || 'i'}/status/${id}`, 302);
|
||||||
|
|
Loading…
Add table
Reference in a new issue