From ae13db90a930dc21cf4ebc213d10cf29d13d7468 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Tue, 22 Oct 2013 21:07:20 +0100 Subject: [PATCH] missing ; - oops --- nodes/analysis/73-parsexml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/analysis/73-parsexml.js b/nodes/analysis/73-parsexml.js index 0aa0846b1..2d0e5225c 100644 --- a/nodes/analysis/73-parsexml.js +++ b/nodes/analysis/73-parsexml.js @@ -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);