Show more future events

This commit is contained in:
Edward Betts 2024-01-01 00:43:09 +00:00
parent 233d4e7fb7
commit 80916ae679

View file

@ -360,7 +360,7 @@ async def get_data(
two_weeks_ago = today - timedelta(weeks=2)
last_week = today - timedelta(weeks=1)
last_year = today - timedelta(days=365)
next_year = today + timedelta(days=365)
next_year = today + timedelta(days=2 * 365)
minus_365 = now - timedelta(days=365)
plus_365 = now + timedelta(days=365)
@ -478,9 +478,7 @@ async def get_data(
busy_events = [
e
for e in sorted(events, key=lambda e: e.as_date)
if e.as_date > today
and e.as_date < (today + timedelta(days=365 * 2))
and busy_event(e)
if e.as_date > today and e.as_date < next_year and busy_event(e)
]
gaps = find_gaps(busy_events)