diff --git a/homeassistant/components/lookin/config_flow.py b/homeassistant/components/lookin/config_flow.py index f4fcece1303..14e4b517b5b 100644 --- a/homeassistant/components/lookin/config_flow.py +++ b/homeassistant/components/lookin/config_flow.py @@ -84,7 +84,7 @@ class LookinFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): async def _validate_device(self, host: str) -> Device: """Validate we can connect to the device.""" session = async_get_clientsession(self.hass) - lookin_protocol = LookInHttpProtocol(host, session) + lookin_protocol = LookInHttpProtocol(f"http://{host}", session) return await lookin_protocol.get_info() async def async_step_discovery_confirm(