Made the router a little safer.

This commit is contained in:
Hans Pinckaers 2011-06-21 21:19:48 +02:00
parent 6e09517d55
commit 74b96aa774

View file

@ -63,8 +63,13 @@ exports.setSocketIO = function(_socket)
{ {
console.error(message); console.error(message);
//check if component is registered in the components array
if(components[message.component])
{
components[message.component].handleMessage(client, message); components[message.component].handleMessage(client, message);
} }
}
else else
{ {
throw "Can't route the message:" + JSON.stringify(message); throw "Can't route the message:" + JSON.stringify(message);