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 ve got some bluebird warnings like "Warning: a promise was created in a handler at ... but none were returned from it" - for ex, code in auth.js:
conststrategy=newStrategy(params,(payload,done)=>{Users.findById(payload.id).then(user=>{if(user){returndone(null,{// << -- here is problemid: user.id,email: user.email,});}returndone(null,false);}).catch(error=>done(error,null));});
I ve got some bluebird warnings like "Warning: a promise was created in a handler at ... but none were returned from it" - for ex, code in auth.js:
Here is explanation of problem in issue thread: petkaantonov/bluebird#508
Possible fix:
The text was updated successfully, but these errors were encountered: