From 54de936aae52189f08001ec24c753ca8bb8becfc Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Sun, 25 Aug 2024 18:02:18 +0200 Subject: [PATCH] Lint out the codebase --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 4be63b1..d85a842 100644 --- a/src/index.js +++ b/src/index.js @@ -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);