diff --git a/src/Watchy.cpp b/src/Watchy.cpp index fab4405..778b9e2 100644 --- a/src/Watchy.cpp +++ b/src/Watchy.cpp @@ -617,7 +617,7 @@ weatherData Watchy::getWeatherData(String cityID, String units, String lang, currentWeather.weatherConditionCode = int(responseObject["weather"][0]["id"]); currentWeather.weatherDescription = - responseObject["weather"][0]["main"]; + JSONVar::stringify(responseObject["weather"][0]["main"]); // sync NTP during weather API call and use timezone of city syncNTP(long(responseObject["timezone"])); } else {