We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510b4df commit 8a9478cCopy full SHA for 8a9478c
docs/apps/schedy/CHANGELOG.md
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9
## Unreleased
10
11
### Fixed
12
+* Fixed a bug in schedule.next_results() expression helper that caused
13
+ some result changes to be skipped.
14
15
### Security
16
hass_apps/schedy/schedule.py
@@ -521,7 +521,7 @@ def map_func(_time: datetime.time) -> datetime.datetime:
521
occurrence of that time. Midnight transitions are handled
522
correctly."""
523
524
- if _time < current_time:
+ if _time <= current_time:
525
# midnight transition
526
return datetime.datetime.combine(tomorrow, _time)
527
0 commit comments