Found the human redirect issue

This commit is contained in:
dangered wolf 2023-11-10 05:33:04 -05:00
parent e9528a7e00
commit 3d536aa5f1
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -142,7 +142,6 @@ export const statusRequest = async (c: Context) => {
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);
}
};