Correct function response encoding

This will encode all ParseObject on the correct way so they can be translated into PFObject by the IOS SDK.
This commit is contained in:
German Laullon
2016-02-04 23:42:01 +01:00
parent c106ac6499
commit 36675a9598

View File

@@ -28,7 +28,7 @@ function createResponseObject(resolve, reject) {
success: function(result) { success: function(result) {
resolve({ resolve({
response: { response: {
result: result result: Parse._encode(result)
} }
}); });
}, },