Skip to content

Commit

Permalink
Remove default share
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Oct 10, 2014
1 parent e2e8be3 commit c30b77f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mqlight/mqlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit c30b77f

Please sign in to comment.