From 76af4db149e6276194b26414d86dee52ee178bb5 Mon Sep 17 00:00:00 2001 From: x1ao4 Date: Sun, 6 Jul 2025 19:56:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=8E=B7=E5=8F=96=E6=9C=80?= =?UTF-8?q?=E8=BF=91=E6=9B=B4=E6=96=B0=E6=97=A5=E6=9C=9F=E7=9A=84=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/run.py b/app/run.py index 7a3df7b..cf99055 100644 --- a/app/run.py +++ b/app/run.py @@ -1498,7 +1498,7 @@ def get_task_latest_info(): query = """ SELECT task_name, MAX(transfer_time) as latest_transfer_time FROM transfer_records - WHERE task_name != 'rename' + WHERE task_name NOT IN ('rename', 'undo_rename') GROUP BY task_name """ cursor.execute(query)