* Quick fix to Remote Console session ID handling.
parent
316503c398
commit
19d4867af7
|
@ -302,6 +302,12 @@ namespace OpenSim.Framework.Console
|
||||||
if (!UUID.TryParse(post["ID"].ToString(), out id))
|
if (!UUID.TryParse(post["ID"].ToString(), out id))
|
||||||
return reply;
|
return reply;
|
||||||
|
|
||||||
|
lock(m_Connections)
|
||||||
|
{
|
||||||
|
if(!m_Connections.ContainsKey(id))
|
||||||
|
return reply;
|
||||||
|
}
|
||||||
|
|
||||||
if (post["COMMAND"] == null || post["COMMAND"].ToString() == String.Empty)
|
if (post["COMMAND"] == null || post["COMMAND"].ToString() == String.Empty)
|
||||||
return reply;
|
return reply;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue