mirror of
https://github.com/harness/drone.git
synced 2025-05-10 12:39:19 +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
|
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 nil
|
||||||
}
|
}
|
||||||
return token
|
return token
|
||||||
|
Loading…
Reference in New Issue
Block a user