From 048fca283d991af425628deb1b476f4be093f05c Mon Sep 17 00:00:00 2001 From: v6ole Date: Sun, 10 May 2026 14:29:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9C=80=E6=96=B0=E5=85=AC=E5=91=8A?= =?UTF-8?q?=E6=81=A2=E5=A4=8D=E5=85=B3=E9=94=AE=E8=AF=8D=E8=BF=87=E6=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/wechat/handler.py b/app/wechat/handler.py index a436388..599bc7e 100644 --- a/app/wechat/handler.py +++ b/app/wechat/handler.py @@ -245,6 +245,7 @@ class WeChatMessageHandler: async for db in get_db(): stmt = ( select(Announcement) + .where(Announcement.keyword_matched == True) # noqa: E712 .order_by(desc(Announcement.publish_date)) .limit(5) )