* Quick fix to Remote Console session ID handling.

mysql-performance
Adam Frisby 2010-01-26 07:40:33 +11:00
parent 316503c398
commit 19d4867af7
1 changed files with 6 additions and 0 deletions

View File

@ -302,6 +302,12 @@ namespace OpenSim.Framework.Console
if (!UUID.TryParse(post["ID"].ToString(), out id))
return reply;
lock(m_Connections)
{
if(!m_Connections.ContainsKey(id))
return reply;
}
if (post["COMMAND"] == null || post["COMMAND"].ToString() == String.Empty)
return reply;