Merge pull request #832 from RipClaw2971/bugfix

Certificate file cannot be read to database
This commit is contained in:
Michael Kaufmann
2020-05-04 16:11:42 +02:00
committed by GitHub

View File

@@ -328,7 +328,7 @@ class AcmeSh extends \Froxlor\Cron\FroxlorCron
private static function certToDb($certrow, &$cronlog, $acme_result)
{
$return = array();
self::readCertificateToVar($certrow['domain'], $return, $cronlog);
self::readCertificateToVar(strtolower($certrow['domain']), $return, $cronlog);
if (! empty($return['crt'])) {