We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfafcbe commit 3bc3ab6Copy full SHA for 3bc3ab6
WebApiClientCore.Extensions.OAuths/TokenResult.cs
@@ -75,7 +75,7 @@ public virtual bool IsSuccess()
75
/// <returns></returns>
76
public virtual bool IsExpired()
77
{
78
- return DateTime.Now.Subtract(this.createTime) > TimeSpan.FromSeconds(this.Expires_in);
+ return DateTime.Now.Subtract(this.createTime) >= TimeSpan.FromSeconds(this.Expires_in);
79
}
80
81
/// <summary>
0 commit comments