fix: display public routes with header proxy auth
parent
0d179eca4d
commit
da54bd6c21
|
@ -10,10 +10,14 @@ import App from "@/App";
|
||||||
sync(store, router);
|
sync(store, router);
|
||||||
|
|
||||||
async function start() {
|
async function start() {
|
||||||
if (loginPage) {
|
try {
|
||||||
await validateLogin();
|
if (loginPage) {
|
||||||
} else {
|
await validateLogin();
|
||||||
await login("", "", "");
|
} else {
|
||||||
|
await login("", "", "");
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.log(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (recaptcha) {
|
if (recaptcha) {
|
||||||
|
|
Loading…
Reference in New Issue