Relax logger on signature checker
This commit is contained in:
parent
d5692d4088
commit
01dfb64206
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ async function checkSignature (req: Request, res: Response, next: NextFunction)
|
||||||
|
|
||||||
return next()
|
return next()
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error('Error in ActivityPub signature checker.', err)
|
logger.warn('Error in ActivityPub signature checker.', err)
|
||||||
return res.sendStatus(403)
|
return res.sendStatus(403)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue