From 7c10f4bd3c367665b9d828b812f416a6d9fd910a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Sun, 14 Sep 2025 13:57:05 +0200 Subject: [PATCH] fix: use IANA Registrar ID instead of handle --- src/Service/RDAPService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/RDAPService.php b/src/Service/RDAPService.php index d5ac6b5..64446d5 100644 --- a/src/Service/RDAPService.php +++ b/src/Service/RDAPService.php @@ -534,7 +534,7 @@ class RDAPService foreach ($rdapEntity['publicIds'] as $publicId) { if ('IANA Registrar ID' === $publicId['type'] && isset($publicId['identifier']) && '' !== $publicId['identifier']) { $entity = $this->entityRepository->findOneBy([ - 'handle' => $rdapEntity['handle'], + 'handle' => $publicId['identifier'], 'tld' => null, ]);