diff --git a/calendar/providers/gdata/modules/gdataUtils.jsm b/calendar/providers/gdata/modules/gdataUtils.jsm index d4e5a38c96..0d4e5b8187 100644 --- a/calendar/providers/gdata/modules/gdataUtils.jsm +++ b/calendar/providers/gdata/modules/gdataUtils.jsm @@ -154,7 +154,7 @@ function dateToJSON(aDate) { let tzoffset_hr = Math.floor(Math.abs(full_tzoffset) / 3600); let sign = (full_tzoffset < 0 ? "-" : "+"); if (tzoffset_hr == 0) { - jsonData.timezone = "UTC"; + jsonData.timeZone = "UTC"; } else { jsonData.timeZone = "Etc/GMT" + sign + tzoffset_hr; }