diff options
Diffstat (limited to 'my-evolution/e-summary-weather.c')
-rw-r--r-- | my-evolution/e-summary-weather.c | 9 |
1 files changed, 8 insertions, 1 deletions
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 |