Fix: Fix incorrect error handling
This commit is contained in:
		
							parent
							
								
									db26b7d123
								
							
						
					
					
						commit
						51ac7a58dc
					
				
					 1 changed files with 1 additions and 2 deletions
				
			
		|  | @ -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 a new issue