diff options
author | monsta <[email protected]> | 2016-09-06 11:53:41 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-09-06 11:53:41 +0300 |
commit | fc0d17caf15d2b88776fa27c36d5ba86555e407c (patch) | |
tree | d2df2fab593b29aadbc986d771de3a4d684027ce | |
parent | 06e062693b16189373584801b056079eafac0034 (diff) | |
download | libmateweather-fc0d17caf15d2b88776fa27c36d5ba86555e407c.tar.bz2 libmateweather-fc0d17caf15d2b88776fa27c36d5ba86555e407c.tar.xz |
iwin: use new server address to fix forecast
-rw-r--r-- | libmateweather/weather-iwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmateweather/weather-iwin.c b/libmateweather/weather-iwin.c index e098354..e4bc387 100644 --- a/libmateweather/weather-iwin.c +++ b/libmateweather/weather-iwin.c @@ -462,7 +462,7 @@ iwin_start_open (WeatherInfo *info) zone = g_ascii_strdown (loc->zone, -1); state = g_strndup (zone, 2); - url = g_strdup_printf ("http://weather.noaa.gov/pub/data/forecasts/zone/%s/%s.txt", state, zone); + url = g_strdup_printf ("http://tgftp.nws.noaa.gov/data/forecasts/zone/%s/%s.txt", state, zone); g_free (zone); g_free (state); |