mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-31 19:50:55 +00:00
Fix bug in free busy report serializing a datetime tzinfo
This commit is contained in:
parent
7b0d88ff0d
commit
4c1d295e81
2 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,8 @@ def date_to_datetime(d: date) -> datetime:
|
|||
if not isinstance(d, datetime):
|
||||
d = datetime.combine(d, datetime.min.time())
|
||||
if not d.tzinfo:
|
||||
d = d.replace(tzinfo=timezone.utc)
|
||||
# NOTE: using vobject's UTC as it wasn't playing well with datetime's.
|
||||
d = d.replace(tzinfo=vobject.icalendar.utc)
|
||||
return d
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue