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:
parent
53b6063f51
commit
411cdc5dfd
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user