Merge pull request #427 from pOakley/patch-1

currentweather module api url bugfix
This commit is contained in:
Michael Teeuw 2016-09-06 10:06:18 +02:00 committed by GitHub
commit 1e2d7acf4a

View File

@ -164,7 +164,7 @@ Module.register("currentweather",{
* Calls processWeather on succesfull response.
*/
updateWeather: function() {
var url = this.config.apiBase + this.config.apiVersion + "/" + this.config.weatherEndpoint + '/' + this.getParams();
var url = this.config.apiBase + this.config.apiVersion + "/" + this.config.weatherEndpoint + this.getParams();
var self = this;
var retry = true;