From c575c1251409a7546d6a128706ecfcbce5703b0a Mon Sep 17 00:00:00 2001 From: Olivier Verhaegen <56387556+OlivierVerhaegen@users.noreply.github.com> Date: Mon, 17 Apr 2023 11:59:02 +0200 Subject: [PATCH] Typo fix --- io/stomp/18-stomp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/stomp/18-stomp.js b/io/stomp/18-stomp.js index 4080cef7..a89fe501 100644 --- a/io/stomp/18-stomp.js +++ b/io/stomp/18-stomp.js @@ -364,7 +364,7 @@ module.exports = function(RED) { if (node.topic) { node.serverConnection.register(node); - node.serverConnection.subscribe(node.topic, ack, function(msg) { + node.serverConnection.subscribe(node.topic, node.ack, function(msg) { node.send(msg); });