1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

fix error

This commit is contained in:
Damodar Lohani 2021-05-11 17:00:26 +05:45
parent 35b76c1aee
commit 4170eaa45a

View file

@ -39,7 +39,7 @@ App::init(function ($utopia, $request, $response, $console, $project, $consoleDB
if (!array_key_exists($domain, $checkedDomains)) {
$domain = new Domain(!empty($domain) ? $domain : '');
if (empty($domain->get()) || !$domain->isKnown() || $domain->isTest()()) {
if (empty($domain->get()) || !$domain->isKnown() || $domain->isTest()) {
$checkedDomains[$domain->get()] = false;
Console::info($domain->get() . ' is not a valid domain. Skipping certificate generation.');
} else {