You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/09/10 17:46:00 UTC

svn commit: r693871 - /incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js

Author: chabotc
Date: Wed Sep 10 08:45:59 2008
New Revision: 693871

URL: http://svn.apache.org/viewvc?rev=693871&view=rev
Log:
restfulcontainer fix by Cassie to make it work with php shindig's pc aligned output

Modified:
    incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js

Modified: incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js?rev=693871&r1=693870&r2=693871&view=diff
==============================================================================
--- incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js (original)
+++ incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js Wed Sep 10 08:45:59 2008
@@ -207,7 +207,7 @@
   var me = this;
   return new RestfulRequestItem(peopleRequest.url, peopleRequest.method, null,
       function(rawJson) {
-        return me.createPersonFromJson(rawJson);
+        return me.createPersonFromJson(rawJson['entry']);
       });
 };