mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix bug in profile handling code
This commit is contained in:
parent
8fdd301e45
commit
d8f61b7cdf
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue