diff options
Diffstat (limited to 'my-evolution/e-summary-weather.c')
-rw-r--r-- | my-evolution/e-summary-weather.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/my-evolution/e-summary-weather.c b/my-evolution/e-summary-weather.c index e1aa113095..6456d2a2ea 100644 --- a/my-evolution/e-summary-weather.c +++ b/my-evolution/e-summary-weather.c @@ -445,10 +445,12 @@ e_summary_weather_init_locations (void) &locdata); g_return_val_if_fail (nlocdata == 4, FALSE); - location = weather_location_new (locdata); - g_hash_table_insert (locations_hash, - g_strdup (locdata[1]), - location); + if (!g_hash_table_lookup (locations_hash, locdata[1])) { + location = weather_location_new (locdata); + g_hash_table_insert (locations_hash, + g_strdup (locdata[1]), + location); + } g_strfreev (locdata); } |