ticker-update: fix zone of recurring events

Este commit está contenido en:
Astro 2021-06-10 20:59:38 +02:00
padre e65e7a052b
commit 483bc35e67
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -71,7 +71,7 @@ fn obj_to_events(calendar: String, obj: &Object) -> Vec<Event> {
rrule.into_iter()
.skip_while(|d| *d < start)
.take_while(|d| *d <= end)
.map(|dtstart| dtstart.naive_utc())
.map(|dtstart| dtstart.naive_local())
.map(|dtstart| generate_event(dtstart, true))
.collect()
}