From d547345f90ffac51525d467f7bfa301d7ac44692 Mon Sep 17 00:00:00 2001 From: Andrea Campi Date: Thu, 14 Dec 2017 04:00:30 +0000 Subject: [PATCH] Skip HASS emulated Hue bridges from detection. (#11128) When refactoring the Hue support we lost a check for HASS bridges; restore that. --- homeassistant/components/hue.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homeassistant/components/hue.py b/homeassistant/components/hue.py index 778dcc8dfab..3dad4429b53 100644 --- a/homeassistant/components/hue.py +++ b/homeassistant/components/hue.py @@ -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')