Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1096)

Side by Side Diff: Src/GoogleApis.Auth/OAuth2/Responses/TokenResponse.cs

Issue 184430043: Issue 503: TokenResponse.IsExpired returns true at one minute after token expiration (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: revert projects Created 9 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Src/GoogleApis.Auth.Tests/OAuth2/Responses/TokenResponseTests.cs ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright 2013 Google Inc 2 Copyright 2013 Google Inc
3 3
4 Licensed under the Apache License, Version 2.0 (the "License"); 4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License. 5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at 6 You may obtain a copy of the License at
7 7
8 http://www.apache.org/licenses/LICENSE-2.0 8 http://www.apache.org/licenses/LICENSE-2.0
9 9
10 Unless required by applicable law or agreed to in writing, software 10 Unless required by applicable law or agreed to in writing, software
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 /// <summary> 63 /// <summary>
64 /// Returns <c>true</c> if the token is expired or it's going to be expi red in the next minute. 64 /// Returns <c>true</c> if the token is expired or it's going to be expi red in the next minute.
65 /// </summary> 65 /// </summary>
66 public bool IsExpired(IClock clock) 66 public bool IsExpired(IClock clock)
67 { 67 {
68 if (AccessToken == null || !ExpiresInSeconds.HasValue) 68 if (AccessToken == null || !ExpiresInSeconds.HasValue)
69 { 69 {
70 return true; 70 return true;
71 } 71 }
72 72
73 return Issued.AddSeconds(ExpiresInSeconds.Value + 60) <= clock.Now; 73 return Issued.AddSeconds(ExpiresInSeconds.Value - 60) <= clock.Now;
74 } 74 }
75 } 75 }
76 } 76 }
OLDNEW
« no previous file with comments | « Src/GoogleApis.Auth.Tests/OAuth2/Responses/TokenResponseTests.cs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b