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
1 changed files with 1 additions and 1 deletions

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