diff options
author | Diva Canto | 2013-07-28 18:08:50 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-28 18:08:50 -0700 |
commit | 33b54807a1646a9457a7a718f767ccec1c0cb39f (patch) | |
tree | 731ae3e5359f7b22036adea31dc593042c96d8f6 /OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnector.cs | |
parent | Same issue. (diff) | |
download | opensim-SC_OLD-33b54807a1646a9457a7a718f767ccec1c0cb39f.zip opensim-SC_OLD-33b54807a1646a9457a7a718f767ccec1c0cb39f.tar.gz opensim-SC_OLD-33b54807a1646a9457a7a718f767ccec1c0cb39f.tar.bz2 opensim-SC_OLD-33b54807a1646a9457a7a718f767ccec1c0cb39f.tar.xz |
Changing the visibility test in groups service to be UUID.Zero.ToString() instead of "all" because some paths in the code assume there's a UUI in the RequestingAgent string.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnector.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnector.cs b/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnector.cs index 9a3e125..161ca0c 100644 --- a/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnector.cs +++ b/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnector.cs | |||
@@ -256,6 +256,7 @@ namespace OpenSim.Groups | |||
256 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 256 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
257 | sendData["GroupID"] = GroupID.ToString(); | 257 | sendData["GroupID"] = GroupID.ToString(); |
258 | sendData["RequestingAgentID"] = RequestingAgentID; | 258 | sendData["RequestingAgentID"] = RequestingAgentID; |
259 | |||
259 | Dictionary<string, object> ret = MakeRequest("GETGROUPMEMBERS", sendData); | 260 | Dictionary<string, object> ret = MakeRequest("GETGROUPMEMBERS", sendData); |
260 | 261 | ||
261 | if (ret == null) | 262 | if (ret == null) |