From 37fb46ec3b281c14fc839affb84a87ca47d0a63a Mon Sep 17 00:00:00 2001 From: hsaturn Date: Wed, 22 Mar 2023 20:29:25 +0100 Subject: [PATCH] [TinyMqtt.cpp] Removed obsolete comment --- src/TinyMqtt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TinyMqtt.cpp b/src/TinyMqtt.cpp index 8bf772d..b795676 100644 --- a/src/TinyMqtt.cpp +++ b/src/TinyMqtt.cpp @@ -638,7 +638,7 @@ void MqttClient::processMessage(MqttMessage* mesg) #endif if (callback and isSubscribedTo(published)) { - callback(this, published, payload, len); // TODO send the real payload + callback(this, published, payload, len); } } else if (local_broker) // from outside to inside