mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
stop join tripping up if last message of buffer is blank.
This commit is contained in:
parent
53ab6f8569
commit
2cc19e7e32
@ -627,7 +627,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
Block a user