please mr linter

This commit is contained in:
cvium 2021-03-29 20:51:41 +02:00
parent 2e58ce0d18
commit 24f6d88308

View File

@ -429,8 +429,7 @@ class AppRouter {
if (data.status === 401) { if (data.status === 401) {
console.debug('Invalid stored credentials, redirecting to login'); console.debug('Invalid stored credentials, redirecting to login');
appRouter.showLocalLogin(apiClient.serverId()); appRouter.showLocalLogin(apiClient.serverId());
} } else if (data.status === 403) {
else if (data.status === 403) {
if (data.errorCode === 'ParentalControl') { if (data.errorCode === 'ParentalControl') {
const isCurrentAllowed = this.currentRouteInfo ? (this.currentRouteInfo.route.anonymous || this.currentRouteInfo.route.startup) : true; const isCurrentAllowed = this.currentRouteInfo ? (this.currentRouteInfo.route.anonymous || this.currentRouteInfo.route.startup) : true;