From 469cebba59e83b9f776f69b49aef074e9dc2ac0c Mon Sep 17 00:00:00 2001 From: H Vs Date: Fri, 28 Mar 2025 09:22:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/endpoints/pipeline_endpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/endpoints/pipeline_endpoint.py b/app/endpoints/pipeline_endpoint.py index d49475f..0663696 100644 --- a/app/endpoints/pipeline_endpoint.py +++ b/app/endpoints/pipeline_endpoint.py @@ -46,7 +46,7 @@ async def get_messages(request: Request, body: Dict[str, Any]): WX_BACKLIST.extend(wxids) # 公众号ID已gh_开头 if from_wxid in WX_BACKLIST or 'gh_' in from_wxid: - logger.warning(f'微信ID {wxid} 在黑名单,不处理') + logger.warning(f'来自微信ID {from_wxid} 在黑名单,发送给 {wxid} ,不处理') return {"message": "收到微信回调消息"} await handle_messages_async(request,token_id,msg)