Fix direct media functionality with human user agents

This commit is contained in:
dangered wolf 2023-11-16 19:52:03 -05:00
parent 926b47f10b
commit f3c8c03c4e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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.
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);
return c.redirect(`${baseUrl}/${handle || 'i'}/status/${id}`, 302);