Fix window location replace in loading.html

This commit is contained in:
Théophile Diot 2024-03-19 15:36:11 +00:00
parent d5d1919bf6
commit b450a7a0a2
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06

View file

@ -43,7 +43,7 @@
res = await response.json();
if (res.reloading === false) {
clearInterval(reloading);
window.location.replace("{{ next }}");
window.location.replace("{{ next }}" + (window.location.hash ? window.location.hash : ""));
}
}
}