1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

Removing faked error.

This commit is contained in:
mike12345567 2021-12-17 17:57:40 +00:00
parent 0f4469e6b8
commit 9dd987ffc2

View file

@ -37,9 +37,6 @@ module.exports = (
try {
// check the actual user is authenticated first, try header or cookie
const headerToken = ctx.request.headers[Headers.TOKEN]
if (headerToken) {
throw { name: "JsonWebTokenError" }
}
const authCookie = getCookie(ctx, Cookies.Auth) || openJwt(headerToken)
let authenticated = false,
user = null,