Skip to content

Commit

Permalink
Fix iOS app crashing on None values in Zeroconf service info (#36490)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored and balloob committed Jun 5, 2020
1 parent 0a779ac commit 882359d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions homeassistant/components/zeroconf/__init__.py
Expand Up @@ -120,10 +120,10 @@ def setup(hass, config):

params = {
"version": __version__,
"external_url": None,
"internal_url": None,
"external_url": "",
"internal_url": "",
# Old base URL, for backward compatibility
"base_url": None,
"base_url": "",
# Always needs authentication
"requires_api_password": True,
}
Expand Down

0 comments on commit 882359d

Please sign in to comment.