Fix iOS app crashing on None values in Zeroconf service info (#36490)

This commit is contained in:
Franck Nijhof 2020-06-05 21:43:58 +02:00 committed by Paulus Schoutsen
parent 0a779ac64c
commit 882359d784

View File

@ -120,10 +120,10 @@ def setup(hass, config):
params = { params = {
"version": __version__, "version": __version__,
"external_url": None, "external_url": "",
"internal_url": None, "internal_url": "",
# Old base URL, for backward compatibility # Old base URL, for backward compatibility
"base_url": None, "base_url": "",
# Always needs authentication # Always needs authentication
"requires_api_password": True, "requires_api_password": True,
} }