I think I'm having a problem with timezones in an iCalendar example I'm using.
I created a recurring event on outlook and exported to iCalendar format for testing. It uses my timezone. The resulting iCalendar data is in here http://pastebin.com/ABXCD18s
So, it contains two VTIMEZONE objects, and the VEVENT references them like:
DTSTART;TZID="Unnamed Time Zone 1":20160805T150000
DTEND;TZID="E. South America Standard Time":20160805T153000
This is supposed to be America/Sao_Paolo timezone which is -3:00 GMT. So I try to verify the final value I'm getting like (using joda time):
Hello,
I think I'm having a problem with timezones in an iCalendar example I'm using.
I created a recurring event on outlook and exported to iCalendar format for testing. It uses my timezone. The resulting iCalendar data is in here http://pastebin.com/ABXCD18s
So, it contains two VTIMEZONE objects, and the VEVENT references them like: DTSTART;TZID="Unnamed Time Zone 1":20160805T150000 DTEND;TZID="E. South America Standard Time":20160805T153000
This is supposed to be America/Sao_Paolo timezone which is -3:00 GMT. So I try to verify the final value I'm getting like (using joda time):
If I use direct GMT values the test works. What I'm I missing to make sure the time is taking into consideration the vtimezone?