mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fixup Change node use of node.done
This commit is contained in:
parent
f62a933d1c
commit
6f91786f4d
@ -331,11 +331,11 @@ module.exports = function(RED) {
|
||||
this.on('input', function(msg, send, done) {
|
||||
applyRules(msg, 0, (err,msg) => {
|
||||
if (err) {
|
||||
node.error(err,msg);
|
||||
done(err);
|
||||
} else if (msg) {
|
||||
send(msg);
|
||||
}
|
||||
done();
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user