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

Status messages from nodes in subflows not delegated properly

Fixes #1016
This commit is contained in:
Nick O'Leary 2016-10-19 21:06:45 +01:00
parent dbceef2581
commit 67d5b39c96

View File

@ -192,6 +192,8 @@ function handleError(node,logMessage,msg) {
function delegateStatus(node,statusMessage) {
if (activeFlows[node.z]) {
activeFlows[node.z].handleStatus(node,statusMessage);
} else if (activeNodesToFlow[node.z]) {
activeFlows[activeNodesToFlow[node.z]].handleStatus(node,statusMessage);
}
}
function handleStatus(node,statusMessage) {