Skip to content

Commit

Permalink
Add support for Happy Eyeballs to homekit_controller (#105454)
Browse files Browse the repository at this point in the history
bdraco authored Dec 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 64c3cfc commit ec1cde7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions homeassistant/components/homekit_controller/config_flow.py
Original file line number Diff line number Diff line change
@@ -257,6 +257,11 @@ async def async_step_zeroconf(
)
updated_ip_port = {
"AccessoryIP": discovery_info.host,
"AccessoryIPs": [
str(ip_addr)
for ip_addr in discovery_info.ip_addresses
if not ip_addr.is_link_local and not ip_addr.is_unspecified
],
"AccessoryPort": discovery_info.port,
}
# If the device is already paired and known to us we should monitor c#

0 comments on commit ec1cde7

Please sign in to comment.