I need to fix a bug in the save function of the Parse.Object library. However, when I try to call the original save function in my overwritten prototype, it is recursively recursive until the stack overflows!
Parse.Object.prototype.save = function (arg1, arg2, arg3) { fixIncludedParseObjects(this); Parse.Object.prototype.save.call(this, arg1, arg2, arg3);
How can I change the infinite loop line to call the original function created by parsing?
Thanks!
Garrett
source share