Made the router a little safer.
parent
6e09517d55
commit
74b96aa774
|
@ -63,8 +63,13 @@ exports.setSocketIO = function(_socket)
|
|||
{
|
||||
console.error(message);
|
||||
|
||||
//check if component is registered in the components array
|
||||
if(components[message.component])
|
||||
{
|
||||
components[message.component].handleMessage(client, message);
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
throw "Can't route the message:" + JSON.stringify(message);
|
||||
|
|
Loading…
Reference in New Issue