mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	fix as proposed to close #319
(assuming this node is still relevant :-)
This commit is contained in:
		@@ -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;
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user