mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 12:42:44 +01:00
17 lines
537 B
JavaScript
17 lines
537 B
JavaScript
if (window.location.hostname == "127.0.0.1" || window.location.hostname == "localhost")
|
|
throw "disabling loginRedirect because localhost";
|
|
|
|
const redirectIfOnLogin = () => {
|
|
const path = window.location.pathname;
|
|
if (path == "/login" || path == "/register" || !localStorage.getItem("token")) {
|
|
window.location.pathname = "/login";
|
|
window.location.reload();
|
|
}
|
|
};
|
|
|
|
const observer = new MutationObserver((mutations) => {
|
|
redirectIfOnLogin();
|
|
});
|
|
observer.observe(document, { subtree: true, childList: true });
|
|
|
|
redirectIfOnLogin(); |