From 7984461d2c4ed0800f811b43fa487e27c6ae95f7 Mon Sep 17 00:00:00 2001 From: Marko Jovanovic Date: Fri, 16 Jan 2026 14:38:55 +0100 Subject: [PATCH] Send out only short message type --- src/Command/CleanMobileCommand.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Command/CleanMobileCommand.php b/src/Command/CleanMobileCommand.php index bd992d8..0c29cae 100644 --- a/src/Command/CleanMobileCommand.php +++ b/src/Command/CleanMobileCommand.php @@ -231,7 +231,8 @@ final class CleanMobileCommand extends Command $contact->setStudyId($study_id); $contact->setParsedFileLinenum($rowCount + 1); $contact->setParsedFileLine($sanitiseUtf8(implode(';', $row))); - $contact->setMsgContentType($rowCount % 2 ? 1 : 2); + // $contact->setMsgContentType($rowCount % 2 ? 1 : 2); // alternativ lang oder kurz + $contact->setMsgContentType(2); // nur kurzformat $quartal = $today->format('Y') . ceil($today->format('n') / 3); $contact->setDueQuartal((int) $quartal);