diff --git a/blinkpy/api.py b/blinkpy/api.py index 95dc280b..47a6e3a7 100644 --- a/blinkpy/api.py +++ b/blinkpy/api.py @@ -328,7 +328,8 @@ async def request_camera_liveview(blink, network, camera_id): f"/networks/{network}/cameras/{camera_id}/liveview" ) response = await http_post(blink, url) - await wait_for_command(blink, response) + command_id = response.get("id") or response.get("command_id") + await wait_for_command(blink, {"id": command_id, "network_id": network}) return response