Skip to content

Commit d9b547a

Browse files
committed
Merge pull request #252 from laullon/correct_function_response_encoding
Correct Could Functions response encoding
2 parents c106ac6 + 36675a9 commit d9b547a

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)