From 44f3c6d906ce7d69637b5bd5ac82059f8c0c0ab8 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Wed, 10 Oct 2001 19:54:28 +0000 Subject: Fixed polling in offline mode svn path=/trunk/; revision=13562 --- my-evolution/e-summary-weather.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'my-evolution/e-summary-weather.c') diff --git a/my-evolution/e-summary-weather.c b/my-evolution/e-summary-weather.c index 3b562913c5..070e5ed618 100644 --- a/my-evolution/e-summary-weather.c +++ b/my-evolution/e-summary-weather.c @@ -364,11 +364,16 @@ open_callback (GnomeVFSAsyncHandle *handle, (GnomeVFSAsyncReadCallback) read_callback, w); } -static void +static gboolean e_summary_weather_update (ESummary *summary) { GList *w; + if (summary->weather->online == FALSE) { + g_warning ("%s: Repolling but offline", __FUNCTION__); + return TRUE; + } + summary->weather->errorshown = FALSE; for (w = summary->weather->weathers; w; w = w->next) { char *uri; @@ -380,6 +385,8 @@ e_summary_weather_update (ESummary *summary) (GnomeVFSAsyncOpenCallback) open_callback, weather); g_free (uri); } + + return TRUE; } static void -- cgit v1.2.3