Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot set headers after they are sent to the client #14

Open
FelixRe0 opened this issue Jan 27, 2019 · 0 comments
Open

Cannot set headers after they are sent to the client #14

FelixRe0 opened this issue Jan 27, 2019 · 0 comments

Comments

@FelixRe0
Copy link

In user.controller the login should not send the seponse and then return next(). This causes the error "Cannot set headers after they are sent to the client ".

it should be:

export function login(req, res, next) {
if (req.user) return res.status(200).json(req.user)
next()
}

instead of

export function login(req, res, next) {
res.status(200).json(req.user)
return next()
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant