From 71589193467186051ea98cbd3bf2d82a98b08c98 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Mon, 24 Oct 2016 15:03:51 -0700 Subject: [PATCH] Missed a wsgi->http on iOS component --- homeassistant/components/ios.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ios.py b/homeassistant/components/ios.py index dac03f1a07b..ce110c017d6 100644 --- a/homeassistant/components/ios.py +++ b/homeassistant/components/ios.py @@ -250,7 +250,7 @@ def setup(hass, config): hass.http.register_view(iOSIdentifyDeviceView(hass)) app_config = config.get(DOMAIN, {}) - hass.wsgi.register_view(iOSPushConfigView(hass, + hass.http.register_view(iOSPushConfigView(hass, app_config.get(CONF_PUSH, {}))) return True