[gnome-calendar/mcatanzaro/#485-gnome-3-34] date-time-utils: fall back to UTC when timezone is unrecognized
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-calendar/mcatanzaro/#485-gnome-3-34] date-time-utils: fall back to UTC when timezone is unrecognized
- Date: Tue, 18 Feb 2020 23:15:00 +0000 (UTC)
commit 23c7edd230c17eebe1fd2b0a6fb6444995934160
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Tue Feb 18 15:46:24 2020 +0000
date-time-utils: fall back to UTC when timezone is unrecognized
For whatever reason, libical doesn't support the Etc/UTC timezone.
Currently we crash gnome-calendar whenever libical doesn't support the
current timezone (as returned by GTimeZone). Let's fall back to UTC
instead.
Fixes #485
src/utils/gcal-date-time-utils.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/src/utils/gcal-date-time-utils.c b/src/utils/gcal-date-time-utils.c
index 11dcb5a8..ea28f072 100644
--- a/src/utils/gcal-date-time-utils.c
+++ b/src/utils/gcal-date-time-utils.c
@@ -246,7 +246,9 @@ gcal_timezone_to_icaltimezone (GTimeZone *tz)
tzid = g_time_zone_get_identifier (tz);
ical_tz = i_cal_timezone_get_builtin_timezone (tzid);
- g_assert (ical_tz != NULL);
+ if (!ical_tz)
+ ical_tz = i_cal_timezone_get_utc_timezone ();
+
return ical_tz;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]