* Quick fix to Remote Console session ID handling.

This commit is contained in:
Adam Frisby
2010-01-26 07:40:33 +11:00
parent 316503c398
commit 19d4867af7

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;