Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix for option interval_seconds #1763

Merged
merged 2 commits into from
Jul 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions custom_components/xiaomi_miot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,8 @@ def update_custom_scan_interval(self, only_custom=False):
tim = timedelta(seconds=sec)
if sec > 0 and tim != self.platform.scan_interval:
self.platform.scan_interval = tim
if hasattr(self.platform, 'scan_interval_seconds'):
self.platform.scan_interval_seconds = tim.total_seconds()
_LOGGER.debug('%s: Update custom scan interval: %s', self.name_model, tim)

def update_custom_parallel_updates(self):
Expand Down
Loading