From 9a8ed0e15e7dcc27f4437eebf0044fc422b2dc93 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Tue, 12 May 2026 17:08:56 +0800 Subject: [PATCH] =?UTF-8?q?@=20=E4=BF=AE=E5=A4=8D=E6=9C=BA=E5=9C=BA?= =?UTF-8?q?=E5=BF=AB=E7=85=A7=E6=97=B6=E9=97=B4=E6=98=BE=E7=A4=BA=EF=BC=9A?= =?UTF-8?q?CST=20=E2=86=92=20KST=EF=BC=88UTC+9=20=E5=BD=93=E5=9C=B0?= =?UTF-8?q?=E6=97=B6=E9=97=B4=EF=BC=89=20@?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/telegram_push.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/telegram_push.py b/src/utils/telegram_push.py index 3d30e063..4db96685 100644 --- a/src/utils/telegram_push.py +++ b/src/utils/telegram_push.py @@ -913,7 +913,8 @@ def _run_high_freq_airport_cycle( from datetime import timedelta kst_hour = (datetime.utcnow() + timedelta(hours=9)).hour if 8 <= kst_hour < 20: - local_time = datetime.now().strftime("%H:%M CST") + kst_now = datetime.utcnow() + timedelta(hours=9) + local_time = kst_now.strftime("%H:%M KST") snap_message = _build_airport_snapshot_message(snapshots, local_time) for chat_id in chat_ids: try: