Bugfix: ack

This commit is contained in:
Olivier Verhaegen 2023-04-17 14:06:56 +02:00 committed by GitHub
parent 63398cb836
commit d14b0711c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -452,7 +452,7 @@ module.exports = function(RED) {
setStatusDisconnected(node);
node.on("input", function(msg, send, done) {
node.client.ack(msg.messageId, node.topic, msg.transaction);
node.serverConnection.ack(msg.messageId, node.topic, msg.transaction);
done();
});