ICal - An ICalendar library - Page 2 - Announcing - Elixir Programming Language Forum
I finally started looking at the library, so far so good. I’m so fortunate to have to deal with ics-files generated by outlook 365, where all day events have dtstart/dtend set as just a date, and with no timezone information in the ics file. How do I define/override the timezone of all day events? Ical parses them as a Date (not DateTime), so I guess I could just pattern match on it and handle it on the fly, but it would be neat to be able to force the Date’s into DateTime’s with a supplied tim...