From ee24582dd3faec8cdf726bd6a38266830711cb52 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Mon, 22 Sep 2025 10:59:10 +0800 Subject: [PATCH] fix: bad At construction in respback (#1676) --- pkg/pipeline/respback/respback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/pipeline/respback/respback.py b/pkg/pipeline/respback/respback.py index 331a36aa..574404bc 100644 --- a/pkg/pipeline/respback/respback.py +++ b/pkg/pipeline/respback/respback.py @@ -33,7 +33,7 @@ class SendResponseBackStage(stage.PipelineStage): if query.pipeline_config['output']['misc']['at-sender'] and isinstance( query.message_event, platform_events.GroupMessage ): - query.resp_message_chain[-1].insert(0, platform_message.At(query.message_event.sender.id)) + query.resp_message_chain[-1].insert(0, platform_message.At(target=query.message_event.sender.id)) quote_origin = query.pipeline_config['output']['misc']['quote-origin']