This commit is contained in:
tiago.kayaya
2022-02-08 16:37:32 +01:00
parent 0c01cb1ebc
commit b169ff5687
4 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ export class AuthGuard implements CanActivate {
this.router.navigate(['/']);
return false
} else {
this.authService.loginChat(SessionStore.user)
return true
this.authService.loginChat();
return true;
}
}