mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #3004 from node-red-hitachi/fix-get-subflow-info
Fix allow Flow.getNode to return subflowInstance nodes
This commit is contained in:
commit
3541b4b968
@ -369,12 +369,12 @@ class Flow {
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
// console.log((new Error().stack).toString().split("\n").slice(1,3).join("\n"))
|
// console.log((new Error().stack).toString().split("\n").slice(1,3).join("\n"))
|
||||||
if ((this.flow.configs && this.flow.configs[id]) || (this.flow.nodes && this.flow.nodes[id])) {
|
if ((this.flow.configs && this.flow.configs[id]) || (this.flow.nodes && this.flow.nodes[id] && this.flow.nodes[id].type.substring(0,8) != "subflow:")) {
|
||||||
// This is a node owned by this flow, so return whatever we have got
|
// This is a node owned by this flow, so return whatever we have got
|
||||||
// During a stop/restart, activeNodes could be null for this id
|
// During a stop/restart, activeNodes could be null for this id
|
||||||
return this.activeNodes[id];
|
return this.activeNodes[id];
|
||||||
} else if (this.activeNodes[id]) {
|
} else if (this.activeNodes[id]) {
|
||||||
// TEMP: this is a subflow internal node within this flow
|
// TEMP: this is a subflow internal node within this flow or subflow instance node
|
||||||
return this.activeNodes[id];
|
return this.activeNodes[id];
|
||||||
} else if (this.subflowInstanceNodes[id]) {
|
} else if (this.subflowInstanceNodes[id]) {
|
||||||
return this.subflowInstanceNodes[id];
|
return this.subflowInstanceNodes[id];
|
||||||
|
Loading…
Reference in New Issue
Block a user