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

pull/36626/head
Franck Nijhof 2020-06-05 21:43:58 +02:00 committed by Paulus Schoutsen
parent 85ee0a1a3a
commit 7520aa5b25
1 changed files with 3 additions and 3 deletions

View File

@ -130,10 +130,10 @@ def setup(hass, config):
"location_name": hass.config.location_name,
"uuid": uuid,
"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,
}