File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11221,7 +11221,7 @@ <h3 id="inputs">
11221
11221
const now = this.dateTimeService.now();
11222
11222
const issuedAtMSec = claims.iat * 1000;
11223
11223
const expiresAtMSec = claims.exp * 1000;
11224
- const clockSkewInMSec = (this.getClockSkewInMsec() || 600) * 1000;
11224
+ const clockSkewInMSec = this.getClockSkewInMsec(); // (this.getClockSkewInMsec() || 600) * 1000;
11225
11225
11226
11226
if (
11227
11227
issuedAtMSec - clockSkewInMSec >= now ||
Original file line number Diff line number Diff line change 4
4
"author" : {
5
5
"name" : " Manfred Steyer"
6
6
},
7
- "version" : " 12.0.1 " ,
7
+ "version" : " 12.0.2 " ,
8
8
"repository" : " manfredsteyer/angular-oauth2-oidc" ,
9
9
"peerDependencies" : {
10
10
"@angular/common" : " >=12.0.0" ,
Original file line number Diff line number Diff line change @@ -2227,7 +2227,7 @@ export class OAuthService extends AuthConfig implements OnDestroy {
2227
2227
const now = this . dateTimeService . now ( ) ;
2228
2228
const issuedAtMSec = claims . iat * 1000 ;
2229
2229
const expiresAtMSec = claims . exp * 1000 ;
2230
- const clockSkewInMSec = ( this . getClockSkewInMsec ( ) || 600 ) * 1000 ;
2230
+ const clockSkewInMSec = this . getClockSkewInMsec ( ) ; // (this.getClockSkewInMsec() || 600) * 1000;
2231
2231
2232
2232
if (
2233
2233
issuedAtMSec - clockSkewInMSec >= now ||
You can’t perform that action at this time.
0 commit comments