1
0
Fork 0
forked from svrjs/svrjs

Lint out the codebase

This commit is contained in:
Dorian Niemiec 2024-08-25 18:02:18 +02:00
parent bdc11fa3dc
commit 54de936aae

View file

@ -80,7 +80,7 @@ try {
ocspCache = new ocsp.Cache();
} catch (err) {
ocsp = {
_errored: err
_errored: err,
};
}
@ -834,7 +834,7 @@ if (process.serverConfig.secure) {
const req = ocsp.request.generate(cert, issuer);
const options = {
url: uri,
ocsp: req.data
ocsp: req.data,
};
ocspCache.request(req.id, options, callback);