Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Fix camera updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsch committed May 22, 2020
1 parent 970fcc9 commit a6f0669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/badnest/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def supported_features(self):

def update(self):
"""Cache value from Python-nest."""
self._device.update()
self._device.update_camera(self._uuid)

@property
def name(self):
Expand Down

3 comments on commit a6f0669

@PascalBu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This update broke the Nest Hello camera feed for me... Still working with the old version

@mattsch
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be all sorted in the release I just pushed.

@PascalBu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Working again, all seems fine

Please sign in to comment.