Missed a wsgi->http on iOS component

This commit is contained in:
Robbie Trencheny 2016-10-24 15:03:51 -07:00
parent 627517cbbc
commit 7158919346

View File

@ -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