From 6316f390d771481c821f9a3024a5b9c49a97b289 Mon Sep 17 00:00:00 2001 From: zyqunix <117040076+zyqunix@users.noreply.github.com> Date: Thu, 12 Jun 2025 01:03:12 +0200 Subject: [PATCH] Update index.js --- assets/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(() => {