From a56726f2eab1043eaba837408910acfd8885f3ef Mon Sep 17 00:00:00 2001 From: liuwei Date: Tue, 13 May 2025 14:30:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E5=93=8D=E5=BA=94=E6=97=B6=E9=97=B4?= =?UTF-8?q?=EF=BC=8C=E9=98=B2=E6=AD=A2=E8=A2=AB=E9=A3=8E=E6=8E=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- robot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robot.py b/robot.py index 4e37728..fe22d42 100644 --- a/robot.py +++ b/robot.py @@ -468,7 +468,7 @@ class Robot(Job): """使用插件处理消息""" # 获取所有消息处理插件 - # 关闭12:30-05:00的系统交互,降低被风控风险 + # 关闭00:30-05:00的系统交互,降低被风控风险 current_hour = time.localtime().tm_hour current_minute = time.localtime().tm_min is_sleep_time = (current_hour == 0 and current_minute >= 30) or (1 <= current_hour < 5)