missing ; - oops

This commit is contained in:
Dave Conway-Jones 2013-10-22 21:07:20 +01:00
parent 3b60e1a0e3
commit ae13db90a9
1 changed files with 1 additions and 1 deletions

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