Suppress the strange "Result not Dictionary" messages that happen when

a region queries for a nonexistent presence.
This commit is contained in:
root
2010-09-16 20:21:30 +02:00
parent ec89dc99b7
commit d50a072336

View File

@@ -302,6 +302,9 @@ namespace OpenSim.Services.Connectors
}
else
{
if (replyData["result"].ToString() == "null")
return null;
m_log.DebugFormat("[PRESENCE CONNECTOR]: Invalid reply (result not dictionary) received from presence server when querying for sessionID {0}", sessionID.ToString());
}
}