mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix for missingType(s) - to close #259
(thanks to toksea for spotting it)
This commit is contained in:
parent
35965e55b5
commit
9bc9994354
@ -58,7 +58,7 @@ var parseConfig = function() {
|
|||||||
}
|
}
|
||||||
if (missingTypes.length > 0) {
|
if (missingTypes.length > 0) {
|
||||||
util.log("[red] Waiting for missing types to be registered:");
|
util.log("[red] Waiting for missing types to be registered:");
|
||||||
for (i=0;i<missingType.length;i++) {
|
for (i=0;i<missingTypes.length;i++) {
|
||||||
util.log("[red] - "+missingTypes[i]);
|
util.log("[red] - "+missingTypes[i]);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user