Move .status.json to .status.

Keep a redirect for backwards compatibility.
This commit is contained in:
Juliusz Chroboczek
2024-01-17 22:17:54 +01:00
parent b92cf0480a
commit 3ad6f27b17
3 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -3906,7 +3906,7 @@ async function serverConnect() {
async function start() {
try {
let r = await fetch(".status.json")
let r = await fetch(".status")
if(!r.ok)
throw new Error(`${r.status} ${r.statusText}`);
groupStatus = await r.json()