aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-04-19 16:43:47 +0800
committerMilan Crha <mcrha@redhat.com>2013-04-19 16:43:47 +0800
commit91c44c77ebfc891dc3f65d2317a28b970185dc0a (patch)
tree0fa6986fb23daefd7274eeb40600e006c9dd0167 /calendar/gui
parentf36b98c762713940dc60848cfa138d769f1f6eab (diff)
downloadgsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.tar
gsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.tar.gz
gsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.tar.bz2
gsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.tar.lz
gsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.tar.xz
gsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.tar.zst
gsoc2013-evolution-91c44c77ebfc891dc3f65d2317a28b970185dc0a.zip
Workaround broken Free/Busy fetching (Bug #692361)
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/e-meeting-store.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/e-meeting-store.c b/calendar/gui/e-meeting-store.c
index ae10d60310..6abb1371b5 100644
--- a/calendar/gui/e-meeting-store.c
+++ b/calendar/gui/e-meeting-store.c
@@ -1567,6 +1567,11 @@ freebusy_async (gpointer data)
e_cal_client_get_free_busy_sync (
fbd->client, fbd->startt,
fbd->endt, fbd->users, NULL, NULL);
+ /* This is to workaround broken dispatch of "free-busy-data" signal,
+ introduced in 3.8.0. This code can be removed once the below bug is
+ properly fixed: https://bugzilla.gnome.org/show_bug.cgi?id=692361
+ */
+ g_usleep (G_USEC_PER_SEC / 10);
g_signal_handler_disconnect (fbd->client, sigid);
priv->num_queries--;
g_mutex_unlock (&mutex);