From c2a2e42a66b595fff3b01006ec6cdc5518bb2a44 Mon Sep 17 00:00:00 2001 From: liuwei Date: Wed, 21 May 2025 10:07:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=AE=8C=E6=AF=95=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/main.py b/main.py index 50d032d..3ca4ee8 100644 --- a/main.py +++ b/main.py @@ -88,7 +88,7 @@ def jobs(robot: Robot): await robot.message_count_to_db() # ✅ 每天 09:30 从 sqlite 读取并发送群排行 - @async_job.at_times(["10:06"]) + @async_job.at_times(["09:30"]) async def msg_ranking_job(): await robot.generate_and_send_ranking() @@ -112,10 +112,6 @@ def jobs(robot: Robot): async def login_check_job(): await robot.login_twice_auto_auth() - @async_job.at_times(["09:57"]) - async def login_test(): - await robot.send_ranking_task() - @async_job.at_times(["05:00"]) async def update_image_cache_job(): logger.info("开始执行图片缓存更新任务")