diff options
author | monsta <[email protected]> | 2016-09-06 11:53:41 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-09-06 12:04:35 +0300 |
commit | b94994fd69f9a649e2408e4e98506f44f570cec6 (patch) | |
tree | e2c67e4c3b8ea7cfaa8733fea4d6b21afa6551ee | |
parent | f85d41bb8837c7f227c812e91a3df353ea1e1889 (diff) | |
download | libmateweather-b94994fd69f9a649e2408e4e98506f44f570cec6.tar.bz2 libmateweather-b94994fd69f9a649e2408e4e98506f44f570cec6.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); |