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

a region queries for a nonexistent presence.
avinationmerge
root 2010-09-16 20:21:30 +02:00
parent ec89dc99b7
commit d50a072336
1 changed files with 3 additions and 0 deletions

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());
}
}