1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Move Homekit controller component to user zeroconf discovery (#24042)

This commit is contained in:
Robert Svensson
2019-05-29 20:20:04 +02:00
committed by Paulus Schoutsen
parent 3fef9a93cf
commit 42ee8eef50
6 changed files with 23 additions and 21 deletions

View File

@@ -277,7 +277,7 @@ async def device_config_changed(hass, accessories):
flow = config_flow.HomekitControllerFlowHandler()
flow.hass = hass
flow.context = {}
result = await flow.async_step_discovery(discovery_info)
result = await flow.async_step_zeroconf(discovery_info)
assert result['type'] == 'abort'
assert result['reason'] == 'already_configured'