Look up a homeURL only when it's not null, in addition to not being string.Empty
parent
92dff85afb
commit
33b1e385ec
|
@ -265,7 +265,7 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
|
|||
return userdata.ServerURLs[serverType].ToString();
|
||||
}
|
||||
|
||||
if (userdata.HomeURL != string.Empty)
|
||||
if (userData.HomeURL != null && userdata.HomeURL != string.Empty)
|
||||
{
|
||||
m_log.DebugFormat(
|
||||
"[USER MANAGEMENT MODULE]: Did not find url type {0} so requesting urls from '{1}' for {2}",
|
||||
|
|
Loading…
Reference in New Issue