bradtraversy / meanauthapp

Complete MEAN stack app with authentication
242 stars 152 forks source link

Error when loggin in #14

Open forxtu opened 7 years ago

forxtu commented 7 years ago

Hello! First of all thank you a lot for the great tutorials!

Question: I can register users and I have them in my db, but when I'm trying to log in I got this error: login_err

Please help me figure out why I got it and how to fix it

Thank you a lot!

Ibby-devv commented 7 years ago

I get the same error now, had it working a couple of weeks ago. Some package has updated and broken the app I believe

Ibby-devv commented 7 years ago

Ok this fixed it.

In User.js file

const token = jwt.sign(user, config.secret, {

change user to {data: user}

forxtu commented 7 years ago

Thank you for the answer! I'll try solution asap