we should be return null in these 2 places, though this won't

help with the timeouts.
0.6.0-stable
Sean Dague 2008-05-22 17:55:28 +00:00
parent fb120e3e23
commit 36bfa66719
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ namespace OpenSim.Region.Communications.OGS1
"Error sent by user server when trying to get user appearance: (" +
data["error_type"] +
"): " + data["error_desc"]);
return new AvatarAppearance();
return null;
}
else
{
@ -107,7 +107,7 @@ namespace OpenSim.Region.Communications.OGS1
else
{
m_log.Error("[GRID]: The avatar appearance is null, something bad happenend");
return new AvatarAppearance();
return null;
}
}