staging #447

Merged
edraft merged 56 commits from staging into master 2023-12-02 19:34:25 +01:00
Showing only changes of commit 090f217f93 - Show all commits

View File

@ -64,6 +64,8 @@ class ScheduledEventsWatcher(TaskABC):
elif interval == ScheduledEventIntervalEnum.yearly:
ts = ts + timedelta(days=365)
if ts < now:
return self._append_interval(interval, ts)
return ts
@tasks.loop(hours=24)