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:
parent
dbceef2581
commit
67d5b39c96
@ -192,6 +192,8 @@ function handleError(node,logMessage,msg) {
|
|||||||
function delegateStatus(node,statusMessage) {
|
function delegateStatus(node,statusMessage) {
|
||||||
if (activeFlows[node.z]) {
|
if (activeFlows[node.z]) {
|
||||||
activeFlows[node.z].handleStatus(node,statusMessage);
|
activeFlows[node.z].handleStatus(node,statusMessage);
|
||||||
|
} else if (activeNodesToFlow[node.z]) {
|
||||||
|
activeFlows[activeNodesToFlow[node.z]].handleStatus(node,statusMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function handleStatus(node,statusMessage) {
|
function handleStatus(node,statusMessage) {
|
||||||
|
Loading…
Reference in New Issue
Block a user