Skip to content

Commit 6fe705c

Browse files
committed
formatting and fixing the date
1 parent f72dad5 commit 6fe705c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Angular Lib for OpenID Connect/OAuth2 Changelog
22

3-
### 2021-05-16 Version 11.6.10
3+
### 2021-05-28 Version 11.6.10
44

55
- AutoLoginGuard appears to cause some sort of infinite loop.
66
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1102)

projects/angular-auth-oidc-client/src/lib/check-auth.service.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,9 @@ export class CheckAuthService {
7373
return isAuthenticated;
7474
}),
7575
tap(() => {
76-
7776
const isAuthenticated = this.authStateService.areAuthStorageTokensValid();
7877

79-
if(isAuthenticated){
80-
78+
if (isAuthenticated) {
8179
const savedRouteForRedirect = this.autoLoginService.getStoredRedirectRoute();
8280

8381
if (savedRouteForRedirect) {

0 commit comments

Comments
 (0)