master v0.1.14
Bel LaPointe 2023-04-09 12:00:19 -06:00
parent fb5da88774
commit 9418cecdf5
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
http("GET", `/proxy?user=${document.getElementById("user").value}`, (b, s) => { http("GET", `/proxy?user=${document.getElementById("user").value}`, (b, s) => {
if (s != 200) if (s != 200)
return return
document.getElementById("ntfy").innerHTML = b.replaceAll("\n", "<br>") document.getElementById("ntfy").innerHTML = `<pre>${b}</pre>`
}, null) }, null)
}, 1500) }, 1500)
</script> </script>