From 318d2ab7d71d4a749c3cf0233d56df16ff2f431d Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 21 Jul 2026 07:41:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=E5=8D=95=E5=85=83?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=A4=B1=E8=B4=A5=20(#6165)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: traeagent --- app/scheduler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/scheduler.py b/app/scheduler.py index 9a787ed7..d67d5bac 100644 --- a/app/scheduler.py +++ b/app/scheduler.py @@ -180,16 +180,16 @@ class SchedulerChain(ChainBase): message_cutoff = ( started_at - timedelta(days=message_days) - ).strftime("%Y-%m-%d %H:%M:%S") + ).strftime("%Y-%m-%d") download_history_cutoff = ( started_at - timedelta(days=download_history_days) - ).strftime("%Y-%m-%d %H:%M:%S") + ).strftime("%Y-%m-%d") site_userdata_cutoff = ( started_at - timedelta(days=site_userdata_days) ).strftime("%Y-%m-%d") transfer_history_cutoff = ( started_at - timedelta(days=transfer_history_days) - ).strftime("%Y-%m-%d %H:%M:%S") + ).strftime("%Y-%m-%d") return [ {