From 10b0fc0d85a98f778f9bbc219f83751b3570e340 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 20 Nov 2023 22:49:15 -0500 Subject: [PATCH] Fix #497 --- src/realms/twitter/routes/profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/realms/twitter/routes/profile.ts b/src/realms/twitter/routes/profile.ts index 37535b3..81b68a6 100644 --- a/src/realms/twitter/routes/profile.ts +++ b/src/realms/twitter/routes/profile.ts @@ -53,7 +53,7 @@ export const profileRequest = async (c: Context) => { const profileResponse = await handleProfile(c, username, flags); /* Check for custom redirect */ - if (!isBotUA) { + if (!isBotUA && !flags.api) { return c.redirect(`${baseUrl}/${handle}`, 302); }