Skip to content

Commit

Permalink
Fix arguments to wait_for_command in request_camera_liveview
Browse files Browse the repository at this point in the history
  • Loading branch information
harveypham committed Aug 9, 2024
1 parent e2c747b commit f38506b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blinkpy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ 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)
await wait_for_command(blink, {"id": response["command_id"], "network_id": network})
return response


Expand Down

0 comments on commit f38506b

Please sign in to comment.