mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Short circuit the null message case.
This commit is contained in:
parent
74335990e3
commit
66459f1bd6
@ -62,7 +62,7 @@ Node.prototype.close = function() {
|
||||
Node.prototype.send = function(msg) {
|
||||
// instanceof doesn't work for some reason here
|
||||
if (msg == null) {
|
||||
msg = [];
|
||||
return;
|
||||
} else if (!util.isArray(msg)) {
|
||||
msg = [msg];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user