diff options
| -rw-r--r-- | templates/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.js b/templates/index.js index 3a1ef8f..7996f46 100644 --- a/templates/index.js +++ b/templates/index.js @@ -63,8 +63,8 @@ async function showMarkers() { showMarkers() async function showFavicon() { - res = await fetch('/favicon.ico'); - res = await res.json(); + await fetch('/favicon.ico'); + await res.json(); } showFavicon() |
