-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Description
After updating our Parse Server and Android Client to the latest versions we started to experience this error with our Google users. Our update included ParseGoogleUtils.
Here is code that appears to show a bug:
What we are seeing is the task is coming back as isCompleted but the user is null.
ParseUser.logInWithInBackground(AUTH_TYPE, authData)
.continueWith { task ->
when {
task.isCompleted -> {
var user = task.result
.
.
.
QUESTION:
If the user is null, why is the task completed?
In our searches we found issues #6852 which is a similar error. Because of that post we looked at the server log and see the same error:
error: Uncaught internal server error.Cannot destructure property 'clientId' of 'undefined' as it is undefined.
The other posts do not really give a solution of a way to resolve the issue. It seems like but turns into a doc discussion or something.
Can someone please explain what has changed and what we need to do?
Thanks for any help.