From 15c54f34dfebcb45430781d173253398728312e2 Mon Sep 17 00:00:00 2001 From: Evan Bruhn Date: Wed, 9 Oct 2019 03:31:52 +1100 Subject: [PATCH] Fix Logi Circle cameras not responding to turn on/off commands (#27317) --- homeassistant/components/logi_circle/camera.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/logi_circle/camera.py b/homeassistant/components/logi_circle/camera.py index 27b81d8331e..ec8f1595168 100644 --- a/homeassistant/components/logi_circle/camera.py +++ b/homeassistant/components/logi_circle/camera.py @@ -148,11 +148,11 @@ class LogiCam(Camera): async def async_turn_off(self): """Disable streaming mode for this camera.""" - await self._camera.set_streaming_mode(False) + await self._camera.set_config("streaming", False) async def async_turn_on(self): """Enable streaming mode for this camera.""" - await self._camera.set_streaming_mode(True) + await self._camera.set_config("streaming", True) @property def should_poll(self):