We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc9b3f3 commit 3fd0c5cCopy full SHA for 3fd0c5c
ch19/meadowlark.js
@@ -377,7 +377,7 @@ var getWeatherData = (function(){
377
var deferred = Q.defer();
378
var url = 'http://api.wunderground.com/api/' +
379
credentials.WeatherUnderground.ApiKey +
380
- '/conditions/q/OR/' + loc.name + '.json'
+ '/conditions/q/OR/' + loc.name + '.json';
381
http.get(url, function(res){
382
var body = '';
383
res.on('data', function(chunk){
@@ -400,7 +400,7 @@ var getWeatherData = (function(){
400
});
401
}
402
return { locations: c.locations };
403
- }
+ };
404
})();
405
// initialize weather cache
406
getWeatherData();
0 commit comments