Skip to content

Commit

Permalink
🔧 fix option interval_seconds (#1763)
Browse files Browse the repository at this point in the history
  • Loading branch information
hvvvvvvv authored Jul 14, 2024
1 parent c2e9eed commit 38e2a26
Showing 1 changed file with 2 additions and 0 deletions.
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

0 comments on commit 38e2a26

Please # to comment.