Merge branch 'express-logger-0.0.7-fixes' of http://github.com/adarqui/NodeBB into adarqui

v1.18.x
Julian Lam 12 years ago
commit 4af7da3451

@ -139,10 +139,10 @@ var opts = {
for(var v in clients) {
var client = clients[v];
if(client.oEmit != client.emit)
if(client.oEmit != undefined && client.oEmit != client.emit)
client.emit = client.oEmit;
if(client.$oEmit != client.$emit)
if(client.$oEmit != undefined && client.$oEmit != client.$emit)
client.$emit = client.$oEmit;
}
}

Loading…
Cancel
Save