mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 20:52:42 +01:00
fix request failiure with error code 400
This commit is contained in:
parent
4a3cd74942
commit
e86935f2bf
@ -47,7 +47,7 @@ export async function Authentication(req: Request, res: Response, next: NextFunc
|
||||
req.token = decoded;
|
||||
req.user_id = decoded.id;
|
||||
req.user_bot = user.bot;
|
||||
req.rights = new Rights(user.rights);
|
||||
req.rights = new Rights(Number(user.rights));
|
||||
return next();
|
||||
} catch (error: any) {
|
||||
return next(new HTTPError(error?.toString(), 400));
|
||||
|
Loading…
Reference in New Issue
Block a user