Fix: Fix incorrect error handling

This commit is contained in:
Nelson Chan 2021-07-23 11:23:43 +08:00
parent db26b7d123
commit 51ac7a58dc

View File

@ -97,8 +97,7 @@ exports.checkCertificate = function (res) {
} = res.request.res.socket.getPeerCertificate(false); } = res.request.res.socket.getPeerCertificate(false);
if (!valid_from || !valid_to || !subjectaltname) { if (!valid_from || !valid_to || !subjectaltname) {
reject(new Error('No certificate')); throw { message: 'No TLS certificate in response' };
return;
} }
const valid = res.request.res.socket.authorized || false; const valid = res.request.res.socket.authorized || false;