mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 22:27:07 +00:00
Fix missing integer cast in squeezebox config flow (#47846)
This commit is contained in:
parent
eccdf85b29
commit
30f99177c7
@ -80,7 +80,7 @@ class SqueezeboxConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
return
|
return
|
||||||
self.discovery_info = {
|
self.discovery_info = {
|
||||||
CONF_HOST: server.host,
|
CONF_HOST: server.host,
|
||||||
CONF_PORT: server.port,
|
CONF_PORT: int(server.port),
|
||||||
"uuid": server.uuid,
|
"uuid": server.uuid,
|
||||||
}
|
}
|
||||||
_LOGGER.debug("Discovered server: %s", self.discovery_info)
|
_LOGGER.debug("Discovered server: %s", self.discovery_info)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user