From ff637ef04624224f34922355ec05f39ec95caa59 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Thu, 8 May 2025 10:12:22 +0200 Subject: [PATCH] Include channel in Reolink device URL (#144456) Include channel in device URL --- homeassistant/components/reolink/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/reolink/entity.py b/homeassistant/components/reolink/entity.py index ec598de663d..3325eab6f42 100644 --- a/homeassistant/components/reolink/entity.py +++ b/homeassistant/components/reolink/entity.py @@ -192,7 +192,7 @@ class ReolinkChannelCoordinatorEntity(ReolinkHostCoordinatorEntity): hw_version=self._host.api.camera_hardware_version(dev_ch), sw_version=self._host.api.camera_sw_version(dev_ch), serial_number=self._host.api.camera_uid(dev_ch), - configuration_url=self._conf_url, + configuration_url=f"{self._conf_url}/?ch={dev_ch}", ) @property