From 4ba458d27dd63ce2e439a6b9f11aba268d8431f0 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Tue, 17 Nov 2020 19:35:06 +0100 Subject: [PATCH] Fix ZbPing invalid JSON --- tasmota/xdrv_23_zigbee_8_parsers.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_23_zigbee_8_parsers.ino b/tasmota/xdrv_23_zigbee_8_parsers.ino index 8e3bffc6f..1fa5f7c7b 100644 --- a/tasmota/xdrv_23_zigbee_8_parsers.ino +++ b/tasmota/xdrv_23_zigbee_8_parsers.ino @@ -719,7 +719,7 @@ int32_t Z_ReceiveIEEEAddr(int32_t res, const class SBuffer &buf) { if (friendlyName) { ResponseAppend_P(PSTR(",\"" D_JSON_ZIGBEE_NAME "\":\"%s\""), friendlyName); } - ResponseAppend_P(PSTR("\"}}")); + ResponseAppend_P(PSTR("}}")); MqttPublishPrefixTopicRulesProcess_P(RESULT_OR_TELE, PSTR(D_JSON_ZIGBEEZCL_RECEIVED)); }