fix: display public routes with header proxy auth

This commit is contained in:
Oleg Lobanov 2021-03-21 14:24:23 +01:00
parent 0d179eca4d
commit da54bd6c21
No known key found for this signature in database
GPG Key ID: 7CC64E41212621B0

View File

@ -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) {