We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
at login time, if you make call to currentSession() and make a 2nd call before first is resolved, you get null
currentSession()
null
auth.currentSession().then(session => console.log('currentSession 1', session)) auth.currentSession().then(session => console.log('currentSession 2', session)) auth.currentSession().then(session => console.log('currentSession 3', session))
npm run start:demo
console should display:
"currentSession 1", Object {...} "currentSession 2", Object {...} "currentSession 3", Object {...}
console show:
"currentSession 2", null "currentSession 3", null "currentSession 1", Object {...}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
at login time, if you make call to
currentSession()
and make a 2nd call before first is resolved, you getnull
way to reproduce the bug
npm run start:demo
expected result
console should display:
actual result
console show:
The text was updated successfully, but these errors were encountered: