1
0
Fork 0

Relax logger on signature checker

This commit is contained in:
Chocobozzz 2020-01-29 14:51:44 +01:00
parent d5692d4088
commit 01dfb64206
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -23,7 +23,7 @@ async function checkSignature (req: Request, res: Response, next: NextFunction)
return next()
} catch (err) {
logger.error('Error in ActivityPub signature checker.', err)
logger.warn('Error in ActivityPub signature checker.', err)
return res.sendStatus(403)
}
}