From 57245843739814308c5f3d38882c5880455c295b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Fri, 7 Feb 2025 08:32:19 +0100 Subject: [PATCH] fix: prevent time zone issues --- src/Entity/Domain.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Domain.php b/src/Entity/Domain.php index 3763054..172fd2b 100644 --- a/src/Entity/Domain.php +++ b/src/Entity/Domain.php @@ -393,7 +393,7 @@ class Domain $expiresIn = $this->getExpiresInDays(); - if (0 === $expiresIn) { + if (0 === $expiresIn || 1 === $expiresIn) { return true; }