diff --git a/src/main/java/com/comandante/creeper/bot/WeatherManager.java b/src/main/java/com/comandante/creeper/bot/WeatherManager.java index 9b9b796412365fa771a014a6ff82355d147f011e..1631690877df6adec6922c6c35b3d8e98056410d 100644 --- a/src/main/java/com/comandante/creeper/bot/WeatherManager.java +++ b/src/main/java/com/comandante/creeper/bot/WeatherManager.java @@ -64,7 +64,7 @@ public class WeatherManager { GenericUrl url = new GenericUrl("http://api.wunderground.com/api/" + creeperConfiguration.weatherUndergroundApiKey + "/conditions/q/" + state.toUpperCase() + "/" + convertToUrlFriendly(cityName) + ".json"); HttpRequest httpRequest = requestFactory.buildGetRequest(url); GenericJson content = httpRequest.execute().parseAs(GenericJson.class); - resp.addAll(getForecastString(content)); + resp.addAll(getCurrentConditionsString(content)); return resp; }