v1.0.0 #28

Merged
bizcochito merged 147 commits from develop into main 2024-01-14 19:49:34 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit f859cdeeb1 - Show all commits

View File

@ -34,7 +34,7 @@ class AuthControler {
if (authHeader) {
const token = authHeader.split(" ")[1];
jwt.verify(token, authTokenSecret, (err, app) => {
jwt.verify(token, authTokenSecret, (err, _) => {
if (err) {
return res.status(403).json("Invalid token provided");
}