You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I accidentally miss saving my user.id, so the clientID is used for BearerStrategy and found this bug.
I think in auth.js line 100 db.clients.findByClientId
should be change with db.clients.find
The text was updated successfully, but these errors were encountered:
The "id" stored in the token is the "client.clientId" not "client.id", that's why "db.clients.findByClientId" is used and not "db.clients.find" (now renamed to "db.clients.findById").
I accidentally miss saving my user.id, so the clientID is used for BearerStrategy and found this bug.
I think in auth.js line 100
db.clients.findByClientId
should be change with
db.clients.find
The text was updated successfully, but these errors were encountered: