deny caching when testing the HTTP proxy readiness

This commit is contained in:
idk
2022-11-09 14:38:01 -05:00
parent ab645401c6
commit 4e352d4dda
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
document.addEventListener(
"DOMContentLoaded",
function () {
fetch("http://proxy.i2p").then(
fetch("http://proxy.i2p", { cache: "no-store" }).then(
(myJson) => {
console.warn("(proxyinfo)", myJson);
contentUpdateById("proxy-check", "proxySuccessStatus");