mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
parent
8080ed4787
commit
209c5f337c
@ -573,7 +573,15 @@ module.exports = function(RED) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msg.hasOwnProperty("reset")) { if (inflight[partId]) { delete inflight[partId] }; return; }
|
if (msg.hasOwnProperty("reset")) {
|
||||||
|
if (inflight[partId]) {
|
||||||
|
if (inflight[partId].timeout) {
|
||||||
|
clearTimeout(inflight[partId].timeout);
|
||||||
|
}
|
||||||
|
delete inflight[partId]
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if ((payloadType === 'object') && (propertyKey === null || propertyKey === undefined || propertyKey === "")) {
|
if ((payloadType === 'object') && (propertyKey === null || propertyKey === undefined || propertyKey === "")) {
|
||||||
if (node.mode === "auto") {
|
if (node.mode === "auto") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user