From 5390a7e9f1c54ee2986c2233a85ba628225fe715 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sun, 24 Mar 2019 22:57:49 +0100 Subject: [PATCH] weather: use km/h instead of m/h Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/25f2b3fc7c1263a5fa85bfdf02cfca641f1058d8 Author: vanhofen Date: 2019-03-24 (Sun, 24 Mar 2019) Origin message was: ------------------ - weather: use km/h instead of m/h --- src/gui/weather.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/weather.cpp b/src/gui/weather.cpp index 47bb069aa..077f42da3 100644 --- a/src/gui/weather.cpp +++ b/src/gui/weather.cpp @@ -97,7 +97,7 @@ bool CWeather::GetWeatherDetails() if (!g_settings.weather_enabled) return false; - std::string data = "https://api.darksky.net/forecast/" + key + "/" + coords + "?units=si&lang=de&exclude=minutely,hourly,flags,alerts"; + std::string data = "https://api.darksky.net/forecast/" + key + "/" + coords + "?units=ca&lang=de&exclude=minutely,hourly,flags,alerts"; std::string answer; double found = 0;