diff --git a/Helpers/Weather.js b/Helpers/Weather.js index 538ade2..52b83eb 100644 --- a/Helpers/Weather.js +++ b/Helpers/Weather.js @@ -1,5 +1,5 @@ function fetchCoordinates(city, callback, errorCallback) { - var geoUrl = "https://geocoding-api.open-meteo.com/v1/search?name=" + encodeURIComponent(city) + "&count=1&language=en&format=json"; + var geoUrl = "https://geocoding-api.open-meteo.com/v1/search?name=" + encodeURIComponent(city) + "&language=en&format=json"; var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState === XMLHttpRequest.DONE) {