summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--assets/preload-plugins/loginRedirect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/preload-plugins/loginRedirect.js b/assets/preload-plugins/loginRedirect.js
index 0b5e443a..7b5db578 100644
--- a/assets/preload-plugins/loginRedirect.js
+++ b/assets/preload-plugins/loginRedirect.js
@@ -1,7 +1,7 @@
 if (window.location.hostname !== "127.0.0.1" && window.location.hostname !== "localhost") {
 	const redirectIfOnLogin = () => {
 		const path = window.location.pathname;
-		if (path == "/login" || path == "/register" || !window.localStorage.getItem("token")) {
+		if (path == "/login" || path == "/register" /* || !window.localStorage.getItem("token") */) {
 			window.location.pathname = "/login";
 			//window.location.reload();
 		}