diff options
author | Robin Appelman <robin@icewind.nl> | 2023-05-25 17:03:18 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2023-05-31 14:40:45 +0200 |
commit | 223612b15aaafeaccb9159ea74e87b7e40f54486 (patch) | |
tree | 2c00ffdb985f996402daed862b82100813124513 /lib/private/Security | |
parent | b6d734375478c791a146e2ec5ad61ac1a699e436 (diff) | |
download | nextcloud-server-223612b15aaafeaccb9159ea74e87b7e40f54486.tar.gz nextcloud-server-223612b15aaafeaccb9159ea74e87b7e40f54486.zip |
log failures to read certificates during listing
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Security')
-rw-r--r-- | lib/private/Security/CertificateManager.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/private/Security/CertificateManager.php b/lib/private/Security/CertificateManager.php index b9fbdcc9f02..3a87b7f1a00 100644 --- a/lib/private/Security/CertificateManager.php +++ b/lib/private/Security/CertificateManager.php @@ -83,8 +83,14 @@ class CertificateManager implements ICertificateManager { while (false !== ($file = readdir($handle))) { if ($file != '.' && $file != '..') { try { - $result[] = new Certificate($this->view->file_get_contents($path . $file), $file); + $content = $this->view->file_get_contents($path . $file); + if ($content !== false) { + $result[] = new Certificate($content, $file); + } else { + $this->logger->error("Failed to read certificate from $path"); + } } catch (\Exception $e) { + $this->logger->error("Failed to read certificate from $path", ['exception' => $e]); } } } |