diff --git a/calsocial/calendar_system/gregorian.py b/calsocial/calendar_system/gregorian.py index 9f67373..061fdbc 100644 --- a/calsocial/calendar_system/gregorian.py +++ b/calsocial/calendar_system/gregorian.py @@ -150,7 +150,7 @@ class GregorianCalendar(CalendarSystem): if user: events = events.filter(Event.user == user) - start_timestamp = self.timestamp.replace(hour=0, minute=0, second=0, microsecond=0) + start_timestamp = date.replace(hour=0, minute=0, second=0, microsecond=0) end_timestamp = start_timestamp + timedelta(days=1) events = events.filter(((Event.start_time >= start_timestamp) & (Event.start_time < end_timestamp)) |