-
-
Notifications
You must be signed in to change notification settings - Fork 735
New issue
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
Failed signup attempt with anonymous ParseUser leaves it in inconsistent state #401
Comments
Did some more investigating into the source code:
Seems like the answer to my first question is no. My current workaround is to have custom client-side state to keep track of whether the user is |
Closing this as no one has reported this issue recently, and we don't have the resources to investigate these historic reports. Please ask me to reopen if you experience this issue in the latest version of this SDK. |
This is still a problem in the latest version.
I suspect rather than modifying the content of the |
Thanks for opening this issue!
|
The label |
The label |
Hi,
Whenever a signup fails with an anonymous ParseUser, I've noticed a couple of things:
ParseAnonymousUtils.isLinked(ParseUser.current())
returns false.Reproduction steps:
ParseAnonymousUtils.isLinked(ParseUser.current())
.From my understanding, the last value should be true, but is actually false.
These things are troubling because we are using
ParseAnonymousUtils.isLinked(ParseUser.current())
to determine if the user is currentlylogged inregistered (user islogged inregistered iff that returns false).Two questions:
!ParseAnonymousUtils.isLinked(ParseUser.current())
the right way to determine if a previously anonymous user islogged inregistered?The text was updated successfully, but these errors were encountered: