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
After upgrading to latest library version 2.47.6 from 2.47.5 I am being logged out of my application due to a null session.
To Reproduce
We use the following to map auth session values to a reactive value. I've never before experienced null sessions when logged in.
// listen to auth state changesclient.auth.onAuthStateChange((event,session)=>{if(session===null){window.location.href=createRedirectUrl('unauthenticated_state',window.location.href);}else{authSession.value=session;}});
Expected behavior
null session shouldn't be reported as the session is valid (prior call to GetSession() confirms this.
The text was updated successfully, but these errors were encountered:
Bug report
Describe the bug
After upgrading to latest library version
2.47.6
from2.47.5
I am being logged out of my application due to a null session.To Reproduce
We use the following to map auth session values to a reactive value. I've never before experienced null sessions when logged in.
Expected behavior
null session shouldn't be reported as the session is valid (prior call to
GetSession()
confirms this.The text was updated successfully, but these errors were encountered: