#19 Fixed missing return value in isLoggedIn function

This commit is contained in:
Serraniel 2020-09-11 16:49:45 +02:00
parent 1962547d75
commit 065ce97adc
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -86,6 +86,8 @@ export function isLoggedIn() {
return;
}
});
return result;
}
let locationPath = location.pathname;