mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
Fix: Fix incorrect error handling
This commit is contained in:
parent
db26b7d123
commit
51ac7a58dc
@ -97,8 +97,7 @@ exports.checkCertificate = function (res) {
|
||||
} = res.request.res.socket.getPeerCertificate(false);
|
||||
|
||||
if (!valid_from || !valid_to || !subjectaltname) {
|
||||
reject(new Error('No certificate'));
|
||||
return;
|
||||
throw { message: 'No TLS certificate in response' };
|
||||
}
|
||||
|
||||
const valid = res.request.res.socket.authorized || false;
|
||||
|
Loading…
Reference in New Issue
Block a user