Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Feb 8, 2024
1 parent 661d8b7 commit 3f6fc22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/components/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function isValidLoggedInUser(req, res, next) {
try {
jsonwebtoken.verify(jwtToken, config.get('oidc:publicKey'));
} catch (e) {
log.debug('error is from verify', e);
log.debug('Error is from verify', e);
return res.status(HttpStatus.UNAUTHORIZED).json();
}
return next();
Expand Down

0 comments on commit 3f6fc22

Please sign in to comment.