From e9528a7e00a6e3c48ba33e51d20ed69a1374c990 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 10 Nov 2023 05:27:01 -0500 Subject: [PATCH] Maybe fix profile requests not working --- src/realms/twitter/router.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/realms/twitter/router.ts b/src/realms/twitter/router.ts index 748659e..8f340aa 100644 --- a/src/realms/twitter/router.ts +++ b/src/realms/twitter/router.ts @@ -28,6 +28,7 @@ export const getBaseRedirectUrl = (c: Context) => { /* Workaround for some dumb maybe-build time issue where statusRequest isn't ready or something because none of these trigger*/ const tweetRequest = async (c: Context) => await statusRequest(c); +const _profileRequest = async (c: Context) => await profileRequest(c); twitter.get('/:prefix?/:handle?/:endpoint{status(es)?}/:id/:language?', tweetRequest); twitter.get(':handle?/:endpoint{status(es)?}/:id/:language?', tweetRequest); @@ -49,6 +50,6 @@ twitter.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT)); twitter.get('/i/events/:id', genericTwitterRedirect); twitter.get('/hashtag/:hashtag', genericTwitterRedirect); -twitter.get('/:handle', profileRequest); +twitter.get('/:handle', _profileRequest); twitter.all('*', async c => c.redirect(Constants.REDIRECT_URL, 302));