fix as proposed to close #319

(assuming this node is still relevant :-)
This commit is contained in:
Dave Conway-Jones
2017-08-27 17:53:44 +01:00
parent 2413738082
commit 9a17460b0e
2 changed files with 3 additions and 5 deletions

View File

@@ -48,11 +48,10 @@ module.exports = function(RED) {
if (node.serviceConfig) {
if (node.serviceConfig.client) {
var recvClient;
var recvClient = node.serviceConfig.client;
recvClient.on("error", function(err) {
if (err) { node.error(err.toString()); }
});
recvClient = node.serviceConfig.client;
recvClient.on("started", function() {
recvClient.on("message", function(data, delivery) {
if (node.topic === delivery.destination.topicPattern) {
@@ -105,11 +104,10 @@ module.exports = function(RED) {
if (node.serviceConfig) {
if (node.serviceConfig.client) {
var sendClient;
var sendClient = node.serviceConfig.client;
sendClient.on("error", function(err) {
if (err) { node.error(err.toString()); }
});
sendClient = node.serviceConfig.client;
sendClient.on("started", function () {
node.on("input", function(msg) {
var topic = node.topic;

View File

@@ -1,6 +1,6 @@
{
"name" : "node-red-node-mqlight",
"version" : "0.0.10",
"version" : "0.0.11",
"description" : "A Node-RED node to send and receive message from IBM MQ Light",
"dependencies" : {
"mqlight" : "1.0.x"