mirror of https://github.com/node-red/node-red.git
Merge pull request #4085 from node-red/link-call-timeout
Clear link-call timeouts when node is closedupdate-jquery-ui
commit
e7c6178391
|
@ -248,6 +248,14 @@ module.exports = function(RED) {
|
|||
}
|
||||
});
|
||||
|
||||
this.on("close", function () {
|
||||
for (const event of Object.values(messageEvents)) {
|
||||
if (event.ts) {
|
||||
clearTimeout(event.ts)
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
this.returnLinkMessage = function(eventId, msg) {
|
||||
if (Array.isArray(msg._linkSource) && msg._linkSource.length === 0) {
|
||||
delete msg._linkSource;
|
||||
|
|
Loading…
Reference in New Issue