mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix jshint complaints.
This commit is contained in:
parent
7281d273a1
commit
fe9ff0a297
@ -80,7 +80,7 @@ var parseConfig = function() {
|
||||
}
|
||||
}
|
||||
// console.log(nn);
|
||||
if (nn == null) {
|
||||
if (nn === null) {
|
||||
util.log("[red] unknown type: "+activeConfig[i].type);
|
||||
}
|
||||
}
|
||||
@ -88,7 +88,7 @@ var parseConfig = function() {
|
||||
// Clean up any orphaned credentials
|
||||
credentials.clean(flowNodes.get);
|
||||
events.emit("nodes-started");
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
function stopFlows() {
|
||||
@ -161,7 +161,7 @@ var flowNodes = module.exports = {
|
||||
activeConfig = conf;
|
||||
parseConfig();
|
||||
});
|
||||
})
|
||||
});
|
||||
},
|
||||
stopFlows: stopFlows
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user