Skip HASS emulated Hue bridges from detection. (#11128)
When refactoring the Hue support we lost a check for HASS bridges; restore that.
This commit is contained in:
parent
4ec3289f9c
commit
d547345f90
1 changed files with 3 additions and 0 deletions
|
@ -107,6 +107,9 @@ def setup(hass, config):
|
|||
|
||||
def bridge_discovered(hass, service, discovery_info):
|
||||
"""Dispatcher for Hue discovery events."""
|
||||
if "HASS Bridge" in discovery_info.get('name', ''):
|
||||
return
|
||||
|
||||
host = discovery_info.get('host')
|
||||
serial = discovery_info.get('serial')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue