* Fixed a dictionary value retrieval in GroupsModule
parent
3e8cb7a9a0
commit
05123c6bd5
|
@ -1193,8 +1193,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
string domain = string.Empty; //m_sceneList[0].CommsManager.NetworkServersInfo.UserURL;
|
string domain = string.Empty; //m_sceneList[0].CommsManager.NetworkServersInfo.UserURL;
|
||||||
if (account.ServiceURLs["HomeURI"] != null)
|
object homeUriObj;
|
||||||
domain = account.ServiceURLs["HomeURI"].ToString();
|
if (account.ServiceURLs.TryGetValue("HomeURI", out homeUriObj) && homeUriObj != null)
|
||||||
|
domain = homeUriObj.ToString();
|
||||||
// They're a local user, use this:
|
// They're a local user, use this:
|
||||||
info.RequestID.UserServiceURL = domain;
|
info.RequestID.UserServiceURL = domain;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue