Fix incorrect weather call

This commit is contained in:
Samer Albahra
2015-11-02 17:16:50 -06:00
parent cc549afb69
commit 87b7b779ba

View File

@@ -489,7 +489,7 @@ exports.getWeather = function( req, res ) {
location = [ parseFloat( location[ 0 ] ), parseFloat( location[ 1 ] ) ]; location = [ parseFloat( location[ 0 ] ), parseFloat( location[ 1 ] ) ];
// Continue with the weather request // Continue with the weather request
getOWMWeatherData( location, finishRequest ); getTimeData( location, finishRequest );
} else { } else {