mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
adjusted new UserManagementModule to accept the HG UUI test harness
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
This commit is contained in:
@@ -500,7 +500,11 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
|
||||
|
||||
if (!userdata.HasGridUserTried)
|
||||
{
|
||||
GridUserInfo uInfo = m_Scenes[0].GridUserService.GetGridUserInfo(uuid.ToString());
|
||||
GridUserInfo uInfo = null;
|
||||
if (null != m_Scenes[0].GridUserService)
|
||||
{
|
||||
uInfo = m_Scenes[0].GridUserService.GetGridUserInfo(uuid.ToString());
|
||||
}
|
||||
if (uInfo != null)
|
||||
{
|
||||
string url, first, last, tmp;
|
||||
|
||||
Reference in New Issue
Block a user