diff --git a/.gitignore b/.gitignore index f1b0b01..31cdb16 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ phpstan.neon public/images/*.png public/content/*.md public/favicon.ico +config/app/custom_rdap_servers.yaml diff --git a/src/MessageHandler/UpdateRdapServersHandler.php b/src/MessageHandler/UpdateRdapServersHandler.php index 7dd89c9..66bcdcc 100644 --- a/src/MessageHandler/UpdateRdapServersHandler.php +++ b/src/MessageHandler/UpdateRdapServersHandler.php @@ -46,12 +46,6 @@ final readonly class UpdateRdapServersHandler $throws[] = $throwable; } - try { - $this->RDAPService->updateRDAPServersFromIANA(); - } catch (\Throwable $throwable) { - $throws[] = $throwable; - } - try { $this->RDAPService->updateRDAPServersFromFile($this->bag->get('custom_rdap_servers_file')); } catch (\Throwable $throwable) { diff --git a/src/Service/Connector/NamecheapProvider.php b/src/Service/Connector/NamecheapProvider.php index df8c3e7..836ffcb 100644 --- a/src/Service/Connector/NamecheapProvider.php +++ b/src/Service/Connector/NamecheapProvider.php @@ -60,7 +60,6 @@ class NamecheapProvider extends AbstractProvider 'Years' => 1, // Number of years to register 'AddFreeWhoisguard' => 'yes', // Adds free domain privacy for the domain 'WGEnabled' => 'yes', // Enables free domain privacy for the domain - 'IsPremiumDomain' => 'False', ], $domainAddresses), $dryRun); }