Fix Matter startup when Matter bridge is present (#116569)
parent
309b3451b6
commit
217795865b
|
@ -398,6 +398,8 @@ class MatterLight(MatterEntity, LightEntity):
|
|||
def _check_transition_blocklist(self) -> None:
|
||||
"""Check if this device is reported to have non working transitions."""
|
||||
device_info = self._endpoint.device_info
|
||||
if isinstance(device_info, clusters.BridgedDeviceBasicInformation):
|
||||
return
|
||||
if (
|
||||
device_info.vendorID,
|
||||
device_info.productID,
|
||||
|
|
Loading…
Reference in New Issue