mirror of https://github.com/node-red/node-red.git
stop join tripping up if last message of buffer is blank.
parent
90887779ea
commit
e346702292
|
@ -628,7 +628,9 @@ module.exports = function(RED) {
|
|||
|
||||
var group = inflight[partId];
|
||||
if (payloadType === 'buffer') {
|
||||
inflight[partId].bufferLen += property.length;
|
||||
if (property !== undefined) {
|
||||
inflight[partId].bufferLen += property.length;
|
||||
}
|
||||
}
|
||||
if (payloadType === 'object') {
|
||||
group.payload[propertyKey] = property;
|
||||
|
|
Loading…
Reference in New Issue