From 7595b137724deeefe5778b4913281e4fcfc4da96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Wed, 29 Oct 2025 19:18:44 +0100 Subject: [PATCH] feat: no domain update if < 5 secs --- 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 a987844..655f493 100644 --- a/src/Service/RDAPService.php +++ b/src/Service/RDAPService.php @@ -803,7 +803,7 @@ class RDAPService $expiresIn = $this->getExpiresInDays($domain); - if ($intensifyLastDay && (0 === $expiresIn || 1 === $expiresIn)) { + if ($updatedAtDiff->s >= 5 && $intensifyLastDay && (0 === $expiresIn || 1 === $expiresIn)) { return true; }