From 18563c439ac9afcc66084062fe22e80bd0945f8e Mon Sep 17 00:00:00 2001 From: Marko Jovanovic Date: Wed, 22 Oct 2025 10:47:56 +0200 Subject: [PATCH] Messages are due today in CleanMobileCommand --- src/Command/CleanMobileCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/CleanMobileCommand.php b/src/Command/CleanMobileCommand.php index 3b5ec8d..264bf74 100644 --- a/src/Command/CleanMobileCommand.php +++ b/src/Command/CleanMobileCommand.php @@ -197,7 +197,7 @@ final class CleanMobileCommand extends Command // Create a Contact entity for DB insertion $contact = new Contacts(); $contact->setPhoneNumber($row['HANDY_E164']); - $dueDate = (new \DateTime('tomorrow'))->setTime(16, 0, 0); + $dueDate = (new \DateTime('today'))->setTime(12, 0, 0); $contact->setDueDate($dueDate); $contact->setContacted(false); $contact->setParsedFilename($inputPath);