1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

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
No known key found for this signature in database
GPG Key ID: 81B04231572A9A2D
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) {
if (node.serviceConfig.client) { if (node.serviceConfig.client) {
var recvClient; var recvClient = node.serviceConfig.client;
recvClient.on("error", function(err) { recvClient.on("error", function(err) {
if (err) { node.error(err.toString()); } if (err) { node.error(err.toString()); }
}); });
recvClient = node.serviceConfig.client;
recvClient.on("started", function() { recvClient.on("started", function() {
recvClient.on("message", function(data, delivery) { recvClient.on("message", function(data, delivery) {
if (node.topic === delivery.destination.topicPattern) { if (node.topic === delivery.destination.topicPattern) {
@ -105,11 +104,10 @@ module.exports = function(RED) {
if (node.serviceConfig) { if (node.serviceConfig) {
if (node.serviceConfig.client) { if (node.serviceConfig.client) {
var sendClient; var sendClient = node.serviceConfig.client;
sendClient.on("error", function(err) { sendClient.on("error", function(err) {
if (err) { node.error(err.toString()); } if (err) { node.error(err.toString()); }
}); });
sendClient = node.serviceConfig.client;
sendClient.on("started", function () { sendClient.on("started", function () {
node.on("input", function(msg) { node.on("input", function(msg) {
var topic = node.topic; var topic = node.topic;

View File

@ -1,6 +1,6 @@
{ {
"name" : "node-red-node-mqlight", "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", "description" : "A Node-RED node to send and receive message from IBM MQ Light",
"dependencies" : { "dependencies" : {
"mqlight" : "1.0.x" "mqlight" : "1.0.x"