Fix bug in profile handling code

This commit is contained in:
dangered wolf 2022-07-16 16:20:11 -04:00
parent 8fdd301e45
commit d8f61b7cdf
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -64,7 +64,7 @@ const profileRequest = async (request: any, _event: FetchEvent) => {
const { handle } = request.params;
const url = new URL(request.url);
if (handle.match(/[a-z0-9_]{1,15}/gi) !== handle) {
if (handle.match(/[a-z0-9_]{1,15}/gi)[0] !== handle) {
return Response.redirect(Constants.REDIRECT_URL, 302);
} else {
return Response.redirect(`${Constants.TWITTER_ROOT}${url.pathname}`, 302);