Merge pull request 'fix(letsencrypt): check for false as to avoid TypeError' (#84) from fix-letsencrypt into unstable

Reviewed-on: #84
This commit is contained in:
Mathieu Trossevin 2023-11-30 16:36:16 +01:00
commit fd0f03ab05
2 changed files with 5 additions and 0 deletions

View file

@ -20,6 +20,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Fixed
* letsencrypt: Add required check when retrieving certificate. (Avoid TypeError.)
### Removed
### Security

View file

@ -157,6 +157,9 @@ class LetsEncrypt
{
$stream = stream_context_create(array("ssl" => array("capture_peer_cert" => true)));
$read = stream_socket_client("ssl://" . $domain . ":443", $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $stream);
if ($read === false) {
return false;
}
$cont = stream_context_get_params($read);
return $cont;