Merge pull request #1627 from node-red-hitachi/fix-batch-concat-mode-msg-modification

fixed message modificcation of concat mode of BATCH node
This commit is contained in:
Nick O'Leary
2018-02-13 23:45:19 +00:00
committed by GitHub
2 changed files with 19 additions and 1 deletions

View File

@@ -116,7 +116,7 @@ module.exports = function(RED) {
for (var topic of topics) {
remove_topic(pending, topic);
}
send_msgs(node, msgs, false);
send_msgs(node, msgs, true);
node.pending_count -= msgs.length;
}