diff --git a/homeassistant/components/notify/ios.py b/homeassistant/components/notify/ios.py index 2517020434e..940804ab49c 100644 --- a/homeassistant/components/notify/ios.py +++ b/homeassistant/components/notify/ios.py @@ -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()