From f71dc3e4be75e20ac8d76915c537db753c787cf2 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 19 Feb 2025 00:15:14 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20reminder=20time=20zone=20?= =?UTF-8?q?issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/reminder/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reminder/main.py b/packages/reminder/main.py index 4210ac836..fa675033c 100644 --- a/packages/reminder/main.py +++ b/packages/reminder/main.py @@ -13,7 +13,7 @@ class Main(star.Star): '''使用 LLM 待办提醒。只需对 LLM 说想要提醒的事情和时间即可。比如:`之后每天这个时候都提醒我做多邻国`''' def __init__(self, context: star.Context) -> None: self.context = context - self.scheduler = AsyncIOScheduler() + self.scheduler = AsyncIOScheduler(timezone='Asia/Shanghai') # set and load config if not os.path.exists("data/astrbot-reminder.json"):