mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Restore group membership check for HG users in QueryAccess.
This commit is contained in:
@@ -623,10 +623,13 @@ namespace OpenSim.Groups
|
||||
if (agent != null)
|
||||
break;
|
||||
}
|
||||
if (agent == null) // oops
|
||||
return AgentID.ToString();
|
||||
if (agent != null)
|
||||
return Util.ProduceUserUniversalIdentifier(agent);
|
||||
|
||||
// we don't know anything about this foreign user
|
||||
// try asking the user management module, which may know more
|
||||
return m_UserManagement.GetUserUUI(AgentID);
|
||||
|
||||
return Util.ProduceUserUniversalIdentifier(agent);
|
||||
}
|
||||
|
||||
private string AgentUUIForOutside(string AgentIDStr)
|
||||
|
||||
Reference in New Issue
Block a user