mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
missing ; - oops
This commit is contained in:
parent
3b60e1a0e3
commit
ae13db90a9
@ -31,7 +31,7 @@ function Xml2jsNode(n) {
|
||||
var node = this;
|
||||
this.on("input", function(msg) {
|
||||
parseString(msg.payload, function (err, result) {
|
||||
if (err) { node.error(err; }
|
||||
if (err) { node.error(err); }
|
||||
else {
|
||||
msg.payload = result;
|
||||
node.send(msg);
|
||||
|
Loading…
Reference in New Issue
Block a user