fix: use IANA Registrar ID instead of handle

This commit is contained in:
Maël Gangloff
2025-09-14 13:57:05 +02:00
parent 08c590b95f
commit 7c10f4bd3c

View File

@@ -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,
]);