Add generic redirect for /hashtag (fix #127)

This commit is contained in:
dangered wolf 2022-11-21 01:14:07 -05:00
parent 380990a115
commit 3a315dc9dc
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -247,6 +247,7 @@ router.get('/owoembed', async (request: Request) => {
router.get('/:handle', profileRequest);
router.get('/:handle/', profileRequest);
router.get('/i/events/:id', genericTwitterRedirect);
router.get('/hashtag/:hashtag', genericTwitterRedirect);
/* If we don't understand the route structure at all, we'll
redirect to GitHub (normal domains) or API docs (api.fxtwitter.com) */