Fixed syntax error in debugger command.

Debugger is not an object or command. It is a reserved word and
"DEBUG > 0 &&" syntax does not work with it
This commit is contained in:
Oliver Gutierrez 2016-09-08 14:51:58 +02:00 committed by Pavel Grunt
parent 53b6063f51
commit 411cdc5dfd

View File

@ -189,8 +189,11 @@ SpiceConn.prototype =
if (msg.type > 500)
{
DEBUG > 0 && alert("Something has gone very wrong; we think we have message of type " + msg.type);
DEBUG > 0 && debugger;
if (DEBUG > 0)
{
alert("Something has gone very wrong; we think we have message of type " + msg.type);
debugger;
}
}
if (msg.size == 0)