From e2775c54e456608ee4857574dbe052176f27e259 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Mon, 2 Nov 2020 18:29:04 +0100 Subject: [PATCH] Zigbee fix 0x000 appearing in UI --- 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 5fceb4533..d87f06055 100644 --- a/tasmota/xdrv_23_zigbee_8_parsers.ino +++ b/tasmota/xdrv_23_zigbee_8_parsers.ino @@ -1618,8 +1618,8 @@ int32_t EZ_IncomingMessage(int32_t res, const class SBuffer &buf) { if ((0x0000 == profileid) && (0x00 == srcendpoint)) { // ZDO request // Report LQI - Z_Device & device = zigbee_devices.getShortAddr(srcaddr); if (srcaddr != localShortAddr) { + Z_Device & device = zigbee_devices.getShortAddr(srcaddr); device.setLQI(linkquality); device.setLastSeenNow(); }