From 4e7d052a246bd09c9f5962629a04eddf63f72ec3 Mon Sep 17 00:00:00 2001 From: Aleksey Filippov Date: Tue, 24 Feb 2026 18:29:08 +0300 Subject: [PATCH] fix(ERP-236): reduce default conversion interval to 10 days Co-Authored-By: Claude Opus 4.6 --- erp24/commands/ConvertVideoController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erp24/commands/ConvertVideoController.php b/erp24/commands/ConvertVideoController.php index 023a2bac..dbf31688 100644 --- a/erp24/commands/ConvertVideoController.php +++ b/erp24/commands/ConvertVideoController.php @@ -36,8 +36,8 @@ class ConvertVideoController extends Controller /** @var int Пауза между файлами в секундах (снижает нагрузку) */ public int $sleep = 2; - /** @var int Конвертировать файлы за последние N дней (0 = все, по умолчанию 30) */ - public int $days = 30; + /** @var int Конвертировать файлы за последние N дней (0 = все, по умолчанию 10) */ + public int $days = 10; public function options($actionID): array { -- 2.39.5