1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #317 from hindessm/fix-flows-missing-types-logic

Fix missing types logic.
This commit is contained in:
Nick O'Leary 2014-07-31 10:01:27 +01:00
commit f4ffdce3d0

View File

@ -34,9 +34,9 @@ events.on('type-registered',function(type) {
if (i != -1) {
missingTypes.splice(i,1);
util.log("[red] Missing type registered: "+type);
}
if (missingTypes.length === 0) {
parseConfig();
if (missingTypes.length === 0) {
parseConfig();
}
}
}
});