2
0
mirror of https://github.com/therootcompany/greenlock.js.git synced 2025-03-05 16:20:44 +00:00

bugfix mentioned in #45 don't access a proptery that doesn't exist

This commit is contained in:
AJ ONeal 2016-08-08 09:03:25 -06:00
parent 17de9754e1
commit 020e355c74

View File

@ -350,7 +350,7 @@ function getOrCreateDomainCertificate(args, defaults, handlers) {
}
return fetchFromConfigLiveDir(args).then(function (certs) {
var halfLife = (certs.expiresAt - certs.issuedAt) / 2;
var halfLife = certs && ((certs.expiresAt - certs.issuedAt) / 2);
if (!certs || (Date.now() - certs.issuedAt) > halfLife) {
// There is no cert available