backtracked apiKey change to appid

This commit is contained in:
Bryan Zhu 2020-06-30 12:36:23 -04:00
parent f73520559e
commit ca0b89ecd3
2 changed files with 2 additions and 2 deletions

View File

@ -459,7 +459,7 @@ WeatherProvider.register("openweathermap", {
params += "&units=" + this.config.units;
params += "&lang=" + this.config.lang;
params += "&APPID=" + this.config.appid;
params += "&APPID=" + this.config.apiKey;
return params;
}

View File

@ -15,7 +15,7 @@ Module.register("weather", {
location: false,
locationID: false,
appid: "",
apiKey: "",
units: config.units,
tempUnits: config.units,