From b3199bac88547da7ab212befffac06de55cc96b0 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Tue, 26 May 2026 21:13:32 +0200 Subject: [PATCH] Do not wake Reolink battery camera for privacy mode check (#171842) --- homeassistant/components/reolink/host.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/reolink/host.py b/homeassistant/components/reolink/host.py index 7f8fad134583..c41ff2c4587a 100644 --- a/homeassistant/components/reolink/host.py +++ b/homeassistant/components/reolink/host.py @@ -502,7 +502,9 @@ class ReolinkHost: wake[channel] = False # check privacy mode if enabled - if self._api.baichuan.privacy_mode(channel): + if self._api.baichuan.privacy_mode(channel) and ( + not self._api.is_battery or wake[channel] + ): await self._api.baichuan.get_privacy_mode(channel) if all(wake.values()):