From b7207839bbf648b4a85c04218ddbc7d8a3587f99 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Sun, 3 Nov 2019 20:43:42 +0100 Subject: [PATCH] Remove underscore from LinkQuality field --- 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 e5a0670be..83c9af5ca 100644 --- a/tasmota/xdrv_23_zigbee_8_parsers.ino +++ b/tasmota/xdrv_23_zigbee_8_parsers.ino @@ -402,7 +402,7 @@ int32_t Z_ReceiveAfIncomingMessage(int32_t res, const class SBuffer &buf) { zcl_received.postProcessAttributes(srcaddr, json); // Add linkquality - json[F("_" D_CMND_ZIGBEE_LINKQUALITY)] = linkquality; // prefix with underscore for metadata + json[F(D_CMND_ZIGBEE_LINKQUALITY)] = linkquality; // prefix with underscore for metadata msg = ""; json_root.printTo(msg);