From c9e34e236da147d206ce66ec5d181269e622212d Mon Sep 17 00:00:00 2001 From: Steven Looman Date: Sat, 1 Sep 2018 10:14:21 +0200 Subject: [PATCH] Prevent error message when component is actually ok --- homeassistant/components/igd/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/igd/__init__.py b/homeassistant/components/igd/__init__.py index 305ac993b87..4f2e8dc7e71 100644 --- a/homeassistant/components/igd/__init__.py +++ b/homeassistant/components/igd/__init__.py @@ -143,7 +143,7 @@ async def async_setup(hass: HomeAssistantType, config: ConfigType): # ensure sane config if DOMAIN not in config: - return False + return True if DISCOVERY_DOMAIN not in config: _LOGGER.warning('IGD needs discovery, please enable it')