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/Hypergrid | |
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 'OpenSim/Addons/Groups/Hypergrid')
-rw-r--r-- | OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs index daa0728..5e53981 100644 --- a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs +++ b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | |||
@@ -254,7 +254,10 @@ namespace OpenSim.Groups | |||
254 | { | 254 | { |
255 | string url = string.Empty, gname = string.Empty; | 255 | string url = string.Empty, gname = string.Empty; |
256 | if (IsLocal(GroupID, out url, out gname)) | 256 | if (IsLocal(GroupID, out url, out gname)) |
257 | return m_LocalGroupsConnector.GetGroupMembers(AgentUUI(RequestingAgentID), GroupID); | 257 | { |
258 | string agentID = AgentUUI(RequestingAgentID); | ||
259 | return m_LocalGroupsConnector.GetGroupMembers(agentID, GroupID); | ||
260 | } | ||
258 | else if (!string.IsNullOrEmpty(url)) | 261 | else if (!string.IsNullOrEmpty(url)) |
259 | { | 262 | { |
260 | ExtendedGroupMembershipData membership = m_LocalGroupsConnector.GetAgentGroupMembership(RequestingAgentID, RequestingAgentID, GroupID); | 263 | ExtendedGroupMembershipData membership = m_LocalGroupsConnector.GetAgentGroupMembership(RequestingAgentID, RequestingAgentID, GroupID); |