diff --git a/assets/js/index.js b/assets/js/index.js index 930e8f3..a882b2a 100644 --- a/assets/js/index.js +++ b/assets/js/index.js @@ -232,7 +232,7 @@ function fetchSong() { function fetchWeather(location) { const target = document.getElementById('weather'); - const query = location ? location : "munich"; + const query = location ? location : "Munich"; fetch(`https://wttr.in/${query}?format=%t | %C`).then(response => response.text()).then(data => { target.innerText = data; }).catch(() => {