mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +03:00
solve bug in vjournal time filter
This commit is contained in:
parent
7981e67d96
commit
38845da762
1 changed files with 0 additions and 2 deletions
|
@ -311,7 +311,6 @@ def _time_range_match(vobject_item, filter_, child_name):
|
|||
|
||||
elif child_name == "VJOURNAL":
|
||||
dtstart = getattr(child, "dstart", None)
|
||||
|
||||
if dtstart is not None:
|
||||
dtstart = dtstart.value
|
||||
if not isinstance(dtstart, datetime):
|
||||
|
@ -321,7 +320,6 @@ def _time_range_match(vobject_item, filter_, child_name):
|
|||
.replace(tzinfo=timezone.utc))
|
||||
else:
|
||||
dtstart_is_datetime = True
|
||||
|
||||
if dtstart_is_datetime:
|
||||
# Line 1
|
||||
return start <= dtstart and end > dtstart
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue