mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
stop join tripping up if last message of buffer is blank.
This commit is contained in:
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…
x
Reference in New Issue
Block a user