1
0
Эх сурвалжийг харах

fix: add a guard to the bulb to reject invalid state updates

J. Nick Koston 2 жил өмнө
parent
commit
a87557bd98

+ 2 - 0
switchbot/devices/bulb.py

@@ -131,6 +131,8 @@ class SwitchbotBulb(SwitchbotDevice):
 
     def _update_state(self, result: bytes) -> None:
         """Update device state."""
+        if len(result) < 10:
+            return
         self._state["r"] = result[3]
         self._state["g"] = result[4]
         self._state["b"] = result[5]