From 09b4edf387f3cbb7738a8ab1d75b01a926b4209b Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Thu, 10 Apr 2025 00:30:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=20SendForward=20=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E4=B8=AD=E6=B7=BB=E5=8A=A0=E6=97=A5=E5=BF=97=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E4=BB=A5=E8=BE=93=E5=87=BA=E5=8F=91=E9=80=81=E7=9A=84?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=8C=85=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- action/action.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action/action.go b/action/action.go index 58fca9e..954ce8b 100644 --- a/action/action.go +++ b/action/action.go @@ -3,6 +3,7 @@ package action import ( "encoding/json" "fmt" + "log" "sync" "time" @@ -64,6 +65,7 @@ func (am *actionManager) SendForward(reply *model.Reply) error { defer am.sendMtx.Unlock() sendPkg := model.GenSendPkg(reply.FromMsg.UserId, reply.FromMsg.GroupInfo.GroupId, reply.ReplyMsg, false, true) sendPkgJson, err := json.Marshal(sendPkg) + log.Println(string(sendPkgJson)) if err != nil { return err }