1
0

- debug\n- webserver fonctionnel

This commit is contained in:
2022-03-04 22:30:16 +01:00
parent a29aa9b653
commit 9d10e51a24
17 changed files with 273 additions and 128 deletions

View File

@ -41,7 +41,7 @@ $topics["zigbee2mqtt"]->callback = function($topic, $message)
default:
break;
};
}elseif (($topic[array_key_last($topic)]) != "get" and ($topic[array_key_last($topic)]) != "set" and $included)
}elseif (($topic[array_key_last($topic)]) != "get" and $included)
{
$topic = explode ("/", $message->topic, 2); // get topic name
$topicName = $topic[0];
@ -80,7 +80,7 @@ $topics["zigbee2mqtt"]->callback = function($topic, $message)
}else
{
logger(DEBUG, _("Zigbee2mqtt doing nothing !?"));
logger(DEBUG, _("Zigbee2mqtt doing get or set !?"));
}
};