mirror of
https://github.com/go-acme/lego.git
synced 2024-11-28 17:41:10 +02:00
Clean-up ugly zero time check
This commit is contained in:
parent
3ef08f7413
commit
835927f5d5
@ -60,8 +60,7 @@ func generateDerCert(privKey *rsa.PrivateKey, expiration time.Time, domain strin
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
zero := time.Time{}
|
if expiration.IsZero() {
|
||||||
if expiration == zero {
|
|
||||||
expiration = time.Now().Add(365)
|
expiration = time.Now().Add(365)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user