Do not wake Reolink battery camera for privacy mode check (#171842)

This commit is contained in:
starkillerOG
2026-05-26 21:13:32 +02:00
committed by GitHub
parent 97de25d55a
commit b3199bac88
+3 -1
View File
@@ -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()):