mirror of
https://github.com/harness/drone.git
synced 2025-05-10 03:09:55 +08:00
fixed token expiration calculation
This commit is contained in:
parent
a40d20dcdb
commit
aebacfccd7
@ -70,7 +70,7 @@ func (s *session) GetLogin(r *http.Request) *common.Token {
|
||||
return token
|
||||
}
|
||||
|
||||
if time.Now().UTC().Add(s.expire).Unix() > token.Issued {
|
||||
if time.Unix(token.Issued, 0).Add(s.expire).Before(time.Now()) {
|
||||
return nil
|
||||
}
|
||||
return token
|
||||
|
Loading…
Reference in New Issue
Block a user