We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7b5c73 commit 1b7aacbCopy full SHA for 1b7aacb
src/Infrastructure/Services/JwtTokenService.cs
@@ -27,7 +27,7 @@ public JwtTokenService(ISecretService secretService)
27
IssuerSigningKey = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(jwtSecret)),
28
ValidateIssuer = false,
29
ValidateAudience = false,
30
- ValidateLifetime = true
+ ValidateLifetime = false
31
};
32
var tokenValidationResult = await tokenHandler.ValidateTokenAsync(token, validationParameters);
33
if (!tokenValidationResult.IsValid)
0 commit comments