mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	| @@ -409,7 +409,11 @@ function remapSubflowNodes(nodes,nodeMap) { | ||||
|                 for (j=0;j<outputs.length;j++) { | ||||
|                     wires = outputs[j]; | ||||
|                     for (k=0;k<wires.length;k++) { | ||||
|                         outputs[j][k] = nodeMap[outputs[j][k]].id | ||||
|                         if (nodeMap[outputs[j][k]]) { | ||||
|                             outputs[j][k] = nodeMap[outputs[j][k]].id | ||||
|                         } else { | ||||
|                             outputs[j][k] = null; | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
| @@ -421,7 +425,6 @@ function remapSubflowNodes(nodes,nodeMap) { | ||||
|                 for (var prop in node) { | ||||
|                     if (node.hasOwnProperty(prop) && prop !== '_alias') { | ||||
|                         if (nodeMap[node[prop]]) { | ||||
|                             //console.log("Mapped",node.type,node.id,prop,nodeMap[node[prop]].id); | ||||
|                             node[prop] = nodeMap[node[prop]].id; | ||||
|                         } | ||||
|                     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user