You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by do...@apache.org on 2008/09/04 04:52:42 UTC

svn commit: r691857 - /incubator/shindig/trunk/features/opensocial-current/jsonrpccontainer.js

Author: doll
Date: Wed Sep  3 19:52:41 2008
New Revision: 691857

URL: http://svn.apache.org/viewvc?rev=691857&view=rev
Log:
Fetching activities needs to set the appId param - not the app param.


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

Modified: incubator/shindig/trunk/features/opensocial-current/jsonrpccontainer.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/opensocial-current/jsonrpccontainer.js?rev=691857&r1=691856&r2=691857&view=diff
==============================================================================
--- incubator/shindig/trunk/features/opensocial-current/jsonrpccontainer.js (original)
+++ incubator/shindig/trunk/features/opensocial-current/jsonrpccontainer.js Wed Sep  3 19:52:41 2008
@@ -403,7 +403,7 @@
     opt_params) {
   var rpc = { method : "activities.get" };
   rpc.params = this.translateIdSpec(idSpec);
-  rpc.params.app = "@app";
+  rpc.params.appId = "@app";
   if (idSpec.getField('networkDistance')) {
     rpc.params.networkDistance = idSpec.getField('networkDistance');
   }