From ea177983dc6ac564fdb4014d81f0d97397b56ddc Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Wed, 6 Jun 2012 11:46:36 -0700 Subject: [PATCH] Fixed calendar crash when adding task with due time --- astrid/plugin-src/com/todoroo/astrid/gcal/GCalHelper.java | 1 + 1 file changed, 1 insertion(+) diff --git a/astrid/plugin-src/com/todoroo/astrid/gcal/GCalHelper.java b/astrid/plugin-src/com/todoroo/astrid/gcal/GCalHelper.java index 73a8eb2a9..b6f57a156 100644 --- a/astrid/plugin-src/com/todoroo/astrid/gcal/GCalHelper.java +++ b/astrid/plugin-src/com/todoroo/astrid/gcal/GCalHelper.java @@ -185,6 +185,7 @@ public class GCalHelper { values.put("dtend", dueDate); // setting a duetime to a previously timeless event requires explicitly setting allDay=0 values.put("allDay", "0"); + values.put("eventTimezone", TimeZone.getDefault().getID()); } else { values.put("dtstart", tzCorrectedDueDate); values.put("dtend", tzCorrectedDueDate);