mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 20:57:21 +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
|
||||
self.discovery_info = {
|
||||
CONF_HOST: server.host,
|
||||
CONF_PORT: server.port,
|
||||
CONF_PORT: int(server.port),
|
||||
"uuid": server.uuid,
|
||||
}
|
||||
_LOGGER.debug("Discovered server: %s", self.discovery_info)
|
||||
|
Loading…
x
Reference in New Issue
Block a user