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
The client platform is android.
saveEventually() is suppose to save objects using relations recursively just like saveInBackground does. The logic of my code is very simple and straight forward. I have a logged in user. I create a new ParseObject (Profile) and associate it with the user. Then when I call saveEventually The entire app freezes up.
Steps to reproduce
Signup and login.
Put this code on the onClick listener of a button in android.
Parse user = ParseUser.getCurrentUser(); //A profile object profile = new ParseObject("StudentProfile"); profile.put("user", user); profile.put("name", "John"); profile.setACL(new ParseACL(user)); //Put profile object into user user.put("profile",profile); user.saveEventually();
Expected Results
user saved along with new profile object while pointing towards it.
Actual Outcome
App Freezes
Environment Setup
parse-server version: 3.9.0
Hosted on Back4app
Logs/Trace
Non , App freezes up and stops responding
The text was updated successfully, but these errors were encountered:
Issue Description
The client platform is android.
saveEventually() is suppose to save objects using relations recursively just like saveInBackground does. The logic of my code is very simple and straight forward. I have a logged in user. I create a new ParseObject (Profile) and associate it with the user. Then when I call saveEventually The entire app freezes up.
Steps to reproduce
Signup and login.
Put this code on the onClick listener of a button in android.
Parse user = ParseUser.getCurrentUser();
//A profile object
profile = new ParseObject("StudentProfile");
profile.put("user", user);
profile.put("name", "John");
profile.setACL(new ParseACL(user));
//Put profile object into user
user.put("profile",profile);
user.saveEventually();
Expected Results
user saved along with new profile object while pointing towards it.
Actual Outcome
App Freezes
Environment Setup
Logs/Trace
Non , App freezes up and stops responding
The text was updated successfully, but these errors were encountered: