Explorar el Código

fixes test_report_with_expand_property_all_day_event

Signed-off-by: David Greaves <david@dgreaves.com>
David Greaves hace 8 meses
padre
commit
056954387d
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      radicale/app/report.py

+ 2 - 1
radicale/app/report.py

@@ -402,7 +402,8 @@ def _expand(
             if time_range_start is not None and time_range_end is not None:
                 dtstart = recurrence_utc
                 dtend = dtstart + duration if duration else dtstart
-                if not (dtstart < time_range_end and dtend > time_range_start):
+                # Start includes the time, end does not
+                if not (dtstart <= time_range_end and dtend > time_range_start):
                     logger.debug("Recurrence %s filtered out by time-range", recurrence_utc)
                     continue