no message

This commit is contained in:
2026-05-26 12:46:47 +02:00
parent d523990798
commit be17a47360
+2 -2
View File
@@ -373,7 +373,7 @@ public function ReceiveData($JSONString)
if ($topic === 'feedback-request/' . $suffix) { if ($topic === 'feedback-request/' . $suffix) {
$json = $this->BuildReadResponse(); $json = $this->BuildReadResponse();
$this->PublishMQTT( $this->QueuePublish(
'feedback-response/' . $suffix, 'feedback-response/' . $suffix,
$json $json
); );
@@ -385,7 +385,7 @@ public function ReceiveData($JSONString)
$json = $this->HandleRemoteControlJSON($payload); $json = $this->HandleRemoteControlJSON($payload);
if ($json !== null) { if ($json !== null) {
$this->PublishMQTT( $this->QueuePublish(
'remote-control-response/' . $suffix, 'remote-control-response/' . $suffix,
$json $json
); );