From c30b77f437c25ef31abfe71208e31096069d74b4 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Fri, 10 Oct 2014 14:48:21 +0100 Subject: [PATCH] Remove default share --- mqlight/mqlight.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mqlight/mqlight.js b/mqlight/mqlight.js index 5c71fff..edac5f7 100644 --- a/mqlight/mqlight.js +++ b/mqlight/mqlight.js @@ -73,7 +73,7 @@ module.exports = function(RED) { node.send(msg); }); node.log("Subscribing to "+node.topic+(node.share?+" ["+node.share+"]":"")); - recvClient.subscribe(node.topic, node.share, function(err) { + recvClient.subscribe(node.topic, function(err) { if (err) { node.error("Failed to subscribe: " + err); } else {