From 1d80dd282cccf574fbff3f7ee8cb6fe483d34de1 Mon Sep 17 00:00:00 2001 From: Hosteroid Date: Sat, 11 Oct 2025 01:26:19 +0300 Subject: [PATCH] Update TldRegistryService.php --- app/Services/TldRegistryService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/TldRegistryService.php b/app/Services/TldRegistryService.php index 41126a5..13e86d7 100644 --- a/app/Services/TldRegistryService.php +++ b/app/Services/TldRegistryService.php @@ -322,7 +322,7 @@ class TldRegistryService $stats['total_tlds']++; try { - $result = $this->fetchWhoisDataFromIana($tld['tld']); + $result = $this->fetchWhoisDataFromRdap($tld['tld']); if ($result) { $this->tldModel->update($tld['id'], $result); @@ -1869,7 +1869,7 @@ class TldRegistryService } // Fetch WHOIS data - $result = $this->fetchWhoisDataFromIana($tld); + $result = $this->fetchWhoisDataFromRdap($tld); if ($result && $existing) { $this->tldModel->update($existing['id'], $result);