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
I started to investigate this. I was able to prove that there was an issue by running the test code against an actual parse backend. I could confirm that after saving the brand using mockdb, the items array is an array of pointers, but when saving against a parse backend, the items array is an array of items.
I tried some debug printing in the parse code to see if i could figure out where the two diverged. I didn't get very far.
Good practice for understanding the internals of parse a bit, I guess :)
I added some console.logs to ParseObject.js in the _handleSaveResponse function (line 392 in my lib).
var pending = stateController.popPendingState(this._getStateIdentifier());
console.log(pending);
console.log(response);
console.log(status);
for (attr in pending) {
So maybe there is something downstream of this that makes a decision based on what the object look like, but I more or less lose the path here. Will pick back up again.....
see parse-community/Parse-SDK-JS#89
but is still failing.
The text was updated successfully, but these errors were encountered: