Dont load notify.ios if no devices exist. Thanks @arsaboo for catching this.

pull/4036/head
Robbie Trencheny 2016-10-24 18:46:47 -07:00
parent f25ddef4d7
commit 23f54b07c7
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@ def get_service(hass, config):
# Need this to enable requirements checking in the app.
hass.config.components.append("notify.ios")
if not ios.devices_with_push():
_LOGGER.error(("The notify.ios platform was loaded but no "
"devices exist! Please check the documentation at "
"https://home-assistant.io/components/notify.ios/ "
"for more information"))
return None
return iOSNotificationService()