From 4b4e00e4ce53a1c782e08f9819e394f34971565f Mon Sep 17 00:00:00 2001 From: Marc Blank Date: Fri, 26 Mar 2010 12:13:01 -0700 Subject: [PATCH] Fix #2548436 (Use EVENT_TIMEZONE rather than TIMEZONE) * Prior fix used the wrong column when adding time zone information to downloaded exceptions Bug: 2548436 Change-Id: Idc1001fd58d2fba51823624a15862fe439c9ff6a --- src/com/android/exchange/adapter/CalendarSyncAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/exchange/adapter/CalendarSyncAdapter.java b/src/com/android/exchange/adapter/CalendarSyncAdapter.java index 828814912..78152a093 100644 --- a/src/com/android/exchange/adapter/CalendarSyncAdapter.java +++ b/src/com/android/exchange/adapter/CalendarSyncAdapter.java @@ -535,7 +535,7 @@ public class CalendarSyncAdapter extends AbstractSyncAdapter { cv.put(Events.ORIGINAL_ALL_DAY, parentCv.getAsInteger(Events.ALL_DAY)); cv.put(Events.EVENT_LOCATION, parentCv.getAsString(Events.EVENT_LOCATION)); cv.put(Events.VISIBILITY, parentCv.getAsString(Events.VISIBILITY)); - cv.put(Events.TIMEZONE, parentCv.getAsString(Events.TIMEZONE)); + cv.put(Events.EVENT_TIMEZONE, parentCv.getAsString(Events.EVENT_TIMEZONE)); // This column is the key that links the exception to the serverId // TODO Make sure calendar knows this isn't globally unique!!