mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix window location replace in loading.html
This commit is contained in:
parent
d5d1919bf6
commit
b450a7a0a2
1 changed files with 1 additions and 1 deletions
2
src/ui/templates/loading.html
vendored
2
src/ui/templates/loading.html
vendored
|
|
@ -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 : ""));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue