Skip to content

Commit

Permalink
Correct function response encoding
Browse files Browse the repository at this point in the history
This will encode all ParseObject on the correct way so they can be translated into PFObject by the IOS SDK.
  • Loading branch information
laullon committed Feb 4, 2016
1 parent c106ac6 commit 36675a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function createResponseObject(resolve, reject) {
success: function(result) {
resolve({
response: {
result: result
result: Parse._encode(result)
}
});
},
Expand Down

0 comments on commit 36675a9

Please sign in to comment.