From 46ac93df89457ae2d02f9fdeea644a406f91c6a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Tue, 27 Aug 2024 19:09:27 +0200 Subject: [PATCH] chore: remove a condition --- src/Service/RDAPService.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Service/RDAPService.php b/src/Service/RDAPService.php index c8b692c..b20bbdb 100644 --- a/src/Service/RDAPService.php +++ b/src/Service/RDAPService.php @@ -101,10 +101,6 @@ readonly class RDAPService */ public static function isToBeWatchClosely(Domain $domain, \DateTimeImmutable $updatedAt): bool { - if ($updatedAt->diff(new \DateTimeImmutable('now'))->h < 23) { - return false; - } - $status = $domain->getStatus(); if (!empty($status) && count(array_intersect($status, self::IMPORTANT_STATUS))) { return true;