1
0
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:
Dave Conway-Jones 2013-10-22 21:07:20 +01:00
parent 3b60e1a0e3
commit ae13db90a9

View File

@ -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);