From 7bdebba2418febe970cba633cf759e649a8f028d Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Wed, 18 Jun 2025 17:36:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=9C=A8=20echoFull=20=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E4=B8=AD=E6=B3=A8=E5=86=8C=E5=92=8C=E6=B3=A8=E9=94=80?= =?UTF-8?q?=E5=A4=84=E7=90=86=E5=99=A8=EF=BC=8C=E7=A1=AE=E4=BF=9D=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E8=BF=94=E5=9B=9E=E7=9A=84=20JSON=20=E7=BB=93?= =?UTF-8?q?=E6=9E=84=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/echo/echo.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/handler/echo/echo.go b/handler/echo/echo.go index 72816dc..8a42895 100644 --- a/handler/echo/echo.go +++ b/handler/echo/echo.go @@ -33,8 +33,9 @@ func addEchoFullTrigger(msg model.Message) (reply *model.Reply) { func echoFull(msg model.Message) (reply *model.Reply, catched bool) { msgBytes, _ := json.Marshal(msg.StructuredMsg) + handler.UnRegisterLiveHandler(msg.GroupInfo.GroupId, msg.UserId) return &model.Reply{ - ReplyMsg: msgBytes, + ReplyMsg: string(msgBytes), ReferOriginMsg: false, FromMsg: msg, }, true