From 49da9769439b1618e178928e889cdf583e0e973b Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 13 Aug 2021 20:53:50 +0200 Subject: :bug: fix api middleware --- api/src/middlewares/Authentication.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'api/src/middlewares/Authentication.ts') diff --git a/api/src/middlewares/Authentication.ts b/api/src/middlewares/Authentication.ts index 00cd9ea7..9bd2fcb7 100644 --- a/api/src/middlewares/Authentication.ts +++ b/api/src/middlewares/Authentication.ts @@ -28,10 +28,8 @@ declare global { export async function Authentication(req: Request, res: Response, next: NextFunction) { if (req.method === "OPTIONS") return res.sendStatus(204); - if (!req.url.startsWith("/api")) return next(); - const apiPath = req.url.replace(API_PREFIX, ""); - if (apiPath.startsWith("/invites") && req.method === "GET") return next(); // @ts-ignore - if (NO_AUTHORIZATION_ROUTES.some((x) => apiPath.startsWith(x) || x.test?.(req.url))) return next(); + if (req.url.startsWith("/invites") && req.method === "GET") return next(); // @ts-ignore + if (NO_AUTHORIZATION_ROUTES.some((x) => req.url.startsWith(x) || x.test?.(req.url))) return next(); if (!req.headers.authorization) return next(new HTTPError("Missing Authorization Header", 401)); try { -- cgit 1.5.1