From 36bfa66719d3ef6c1d1be9901dc362bea84f5e3f Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 22 May 2008 17:55:28 +0000 Subject: we should be return null in these 2 places, though this won't help with the timeouts. --- OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index a1ef67f..8807eab 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs @@ -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; } } -- cgit v1.1