mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Fix multi-level sequences of split/join nodes
This commit is contained in:
@@ -93,7 +93,7 @@ module.exports = function(RED) {
|
||||
RED.util.setMessageProperty(group.msg,node.property,group.payload);
|
||||
}
|
||||
if (group.msg.hasOwnProperty('parts') && group.msg.parts.hasOwnProperty('parts')) {
|
||||
group.msg.parts = group.msg.parts;
|
||||
group.msg.parts = group.msg.parts.parts;
|
||||
} else {
|
||||
delete group.msg.parts;
|
||||
}
|
||||
|
Reference in New Issue
Block a user