we should be return null in these 2 places, though this won't
help with the timeouts.0.6.0-stable
parent
fb120e3e23
commit
36bfa66719
|
@ -97,7 +97,7 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
"Error sent by user server when trying to get user appearance: (" +
|
"Error sent by user server when trying to get user appearance: (" +
|
||||||
data["error_type"] +
|
data["error_type"] +
|
||||||
"): " + data["error_desc"]);
|
"): " + data["error_desc"]);
|
||||||
return new AvatarAppearance();
|
return null;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -107,7 +107,7 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_log.Error("[GRID]: The avatar appearance is null, something bad happenend");
|
m_log.Error("[GRID]: The avatar appearance is null, something bad happenend");
|
||||||
return new AvatarAppearance();
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue