From 3d536aa5f17110465cd581e916f9cb4f78449a98 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 10 Nov 2023 05:33:04 -0500 Subject: [PATCH] Found the human redirect issue --- src/realms/twitter/routes/status.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/realms/twitter/routes/status.ts b/src/realms/twitter/routes/status.ts index 625cc8d..4e77279 100644 --- a/src/realms/twitter/routes/status.ts +++ b/src/realms/twitter/routes/status.ts @@ -141,8 +141,7 @@ export const statusRequest = async (c: Context) => { /* A human has clicked a fxtwitter.com/:screen_name/status/:id link! Obviously we just need to redirect to the Tweet directly.*/ console.log('Matched human UA', userAgent); - - c.redirect(`${baseUrl}/${handle || 'i'}/status/${id?.match(/\d{2,20}/)?.[0]}`, 302); - return c.text(''); + + return c.redirect(`${baseUrl}/${handle || 'i'}/status/${id?.match(/\d{2,20}/)?.[0]}`, 302); } };