From b23f45f45ef868726c96948df4cd8b528f2d1316 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 1 May 2022 21:09:13 +0200 Subject: [PATCH] Process a zigbee entity update event with all the properties, not only the ones that have been changed --- platypush/backend/zigbee/mqtt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/backend/zigbee/mqtt/__init__.py b/platypush/backend/zigbee/mqtt/__init__.py index b7af6b1e..7fca6a67 100644 --- a/platypush/backend/zigbee/mqtt/__init__.py +++ b/platypush/backend/zigbee/mqtt/__init__.py @@ -308,7 +308,7 @@ class ZigbeeMqttBackend(MqttBackend): } if changed_props: - self._process_property_update(name, changed_props) + self._process_property_update(name, data) self.bus.post( ZigbeeMqttDevicePropertySetEvent( host=client._host,