fixed config parameter typo

This commit is contained in:
Bryan Zhu
2020-06-30 04:18:03 -04:00
parent 4a162543f6
commit a4df38d963
2 changed files with 6 additions and 8 deletions

View File

@@ -66,7 +66,7 @@ WeatherProvider.register("openweathermap", {
return;
}
this.setFetchedLocation(`(${data.lat},${data.lon})`);
this.setFetchedLocation(`${data.lat},${data.lon}`);
const wData = this.generateWeatherObjectsFromOnecall(data);
this.setWeatherData(wData);