Skip to content

Commit 36675a9

Browse files
committed
Correct function response encoding
This will encode all ParseObject on the correct way so they can be translated into PFObject by the IOS SDK.
1 parent c106ac6 commit 36675a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function createResponseObject(resolve, reject) {
2828
success: function(result) {
2929
resolve({
3030
response: {
31-
result: result
31+
result: Parse._encode(result)
3232
}
3333
});
3434
},

0 commit comments

Comments
 (0)