Skip to content
Snippets Groups Projects
Unverified Commit 39d95d16 authored by Helmo's avatar Helmo
Browse files

Early return when no LE domains remain, #6446

parent d53109aa
No related branches found
No related tags found
1 merge request!1685Early return when no LE domains remain, #6446
...@@ -406,6 +406,10 @@ class letsencrypt { ...@@ -406,6 +406,10 @@ class letsencrypt {
$app->log("There were " . $le_domain_count . " domains in the domain list. LE only supports 100, so we strip the rest.", LOGLEVEL_WARN); $app->log("There were " . $le_domain_count . " domains in the domain list. LE only supports 100, so we strip the rest.", LOGLEVEL_WARN);
} }
if ($le_domain_count == 0) {
return false;
}
// unset useless data // unset useless data
unset($subdomains); unset($subdomains);
unset($aliasdomains); unset($aliasdomains);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment