diff --git a/packages/node_modules/@node-red/nodes/core/sequence/17-split.js b/packages/node_modules/@node-red/nodes/core/sequence/17-split.js index d2b7fc226..e158f344c 100644 --- a/packages/node_modules/@node-red/nodes/core/sequence/17-split.js +++ b/packages/node_modules/@node-red/nodes/core/sequence/17-split.js @@ -631,7 +631,7 @@ module.exports = function(RED) { } } - if (msg.hasOwnProperty("resetTimeout")) { + if (msg.hasOwnProperty("restartTimeout")) { if (inflight[partId]) { if (inflight[partId].timeout) { clearTimeout(inflight[partId].timeout); diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/sequence/17-split.html b/packages/node_modules/@node-red/nodes/locales/en-US/sequence/17-split.html index 51e8600db..4884c96da 100644 --- a/packages/node_modules/@node-red/nodes/locales/en-US/sequence/17-split.html +++ b/packages/node_modules/@node-red/nodes/locales/en-US/sequence/17-split.html @@ -115,10 +115,9 @@

A count can be set for how many messages should be received before generating the output message. For object outputs, once this count has been reached, the node can be configured to send a message for each subsequent message received.

-

A timeout can be set to trigger sending the new message using whatever has been received so far.

+

A timeout can be set to trigger sending the new message using whatever has been received so far. This timeout can be restarted and set to its initial value by sending a message with the msg.restartTimeout property set.

If a message is received with the msg.complete property set, the output message is finalised and sent. This resets any part counts.

-

If a message is received with the msg.resetTimeout property set, the timer for the partly complete message is reset to the original time.

If a message is received with the msg.reset property set, the partly complete message is deleted and not sent. This resets any part counts.