aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 11:13:20 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 11:13:20 +0800
commita3d61001a098f0f08e23bdaeadc672b8a9166b21 (patch)
tree5892f136c37928b8c2f864586cbbf79502ca7f91
parentNote that we should allow git clients and rss readers etc (diff)
downloadpowxy-a3d61001a098f0f08e23bdaeadc672b8a9166b21.tar.gz
powxy-a3d61001a098f0f08e23bdaeadc672b8a9166b21.tar.zst
powxy-a3d61001a098f0f08e23bdaeadc672b8a9166b21.zip
Note when subtlecrypto is in use
-rw-r--r--tmpl.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmpl.go b/tmpl.go
index 65dc79e..aaa99a1 100644
--- a/tmpl.go
+++ b/tmpl.go
@@ -92,7 +92,7 @@ document.addEventListener("DOMContentLoaded", function() {
// Update status every 256 tries
if ((nonce & 0x00FFn) === 0n) {
- status_el.textContent = "Tried " + nonce + " candidates so far...";
+ status_el.textContent = "Attempting to solve automatically via SubtleCrypto. Tried " + nonce + " candidates so far...";
await new Promise(r => setTimeout(r, 0));
}
}