From 87b7b779ba4d20b90af2d363549c3f2ccc52f2cb Mon Sep 17 00:00:00 2001 From: Samer Albahra Date: Mon, 2 Nov 2015 17:16:50 -0600 Subject: [PATCH] Fix incorrect weather call --- routes/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/weather.js b/routes/weather.js index f9a540b..9c41368 100644 --- a/routes/weather.js +++ b/routes/weather.js @@ -489,7 +489,7 @@ exports.getWeather = function( req, res ) { location = [ parseFloat( location[ 0 ] ), parseFloat( location[ 1 ] ) ]; // Continue with the weather request - getOWMWeatherData( location, finishRequest ); + getTimeData( location, finishRequest ); } else {