Skip to content

Commit

Permalink
Fix Matter startup when Matter bridge is present (#116569)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt authored and frenck committed May 3, 2024
1 parent 6583906 commit 523de94
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions homeassistant/components/matter/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,8 @@ def _update_from_device(self) -> None:
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,
Expand Down

0 comments on commit 523de94

Please sign in to comment.