From 30f99177c7bb6a255558821c7f0518139cf0fc37 Mon Sep 17 00:00:00 2001 From: Raj Laud <50647620+rajlaud@users.noreply.github.com> Date: Sat, 13 Mar 2021 01:34:20 -0600 Subject: [PATCH] Fix missing integer cast in squeezebox config flow (#47846) --- homeassistant/components/squeezebox/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/squeezebox/config_flow.py b/homeassistant/components/squeezebox/config_flow.py index 9edff5f9a2a..cadded67bd1 100644 --- a/homeassistant/components/squeezebox/config_flow.py +++ b/homeassistant/components/squeezebox/config_flow.py @@ -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)