From 36675a9598f7b493bb966ab5edbe37b28c307d03 Mon Sep 17 00:00:00 2001 From: German Laullon Date: Thu, 4 Feb 2016 23:42:01 +0100 Subject: [PATCH] Correct function response encoding This will encode all ParseObject on the correct way so they can be translated into PFObject by the IOS SDK. --- functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.js b/functions.js index 97074715a1..f1d5446e11 100644 --- a/functions.js +++ b/functions.js @@ -28,7 +28,7 @@ function createResponseObject(resolve, reject) { success: function(result) { resolve({ response: { - result: result + result: Parse._encode(result) } }); },