mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
50956c51f7
commit
1d4a435f20
@ -71,7 +71,8 @@ module.exports = function(RED) {
|
|||||||
if (msg.hasOwnProperty("payload")) {
|
if (msg.hasOwnProperty("payload")) {
|
||||||
if (msg.hasOwnProperty("parts")) { msg.parts = { parts:msg.parts }; } // push existing parts to a stack
|
if (msg.hasOwnProperty("parts")) { msg.parts = { parts:msg.parts }; } // push existing parts to a stack
|
||||||
else { msg.parts = {}; }
|
else { msg.parts = {}; }
|
||||||
msg.parts.id = msg._msgid; // use the existing _msgid by default.
|
msg.parts.id = RED.util.generateId(); // generate a random id
|
||||||
|
delete msg._msgid;
|
||||||
if (typeof msg.payload === "string") { // Split String into array
|
if (typeof msg.payload === "string") { // Split String into array
|
||||||
msg.payload = (node.remainder || "") + msg.payload;
|
msg.payload = (node.remainder || "") + msg.payload;
|
||||||
msg.parts.type = "string";
|
msg.parts.type = "string";
|
||||||
|
Loading…
Reference in New Issue
Block a user