fix base redirect

This commit is contained in:
Michael Shamoon 2022-12-02 15:51:00 -08:00
parent 304cfc42a9
commit d531805597

View File

@ -25,9 +25,9 @@
"changelog.html": "changelog",
}
const path = RTD_TO_MKD[window.location.pathname.substring(window.location.pathname.lastIndexOf("/") + 1)] + "/";
const path = (RTD_TO_MKD[window.location.pathname.substring(window.location.pathname.lastIndexOf("/") + 1)] ?? "") + "/";
const hash = window.location.hash;
const redirectURL = new URL(path + hash, "https://paperless-ngx.com/");
const redirectURL = new URL(path + hash, "https://paperless-ngx.com/");
console.log(`Redirecting to ${redirectURL} in 3 seconds...`);
setTimeout(() => {