From 7d3da26eb2f4f8d6cbf2fbb390ed87fcd6e62a99 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Thu, 10 Apr 2025 00:50:29 +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=9B=9E=E5=A4=8D=E5=86=85?= =?UTF-8?q?=E5=AE=B9=EF=BC=8C=E5=A2=9E=E5=BC=BA=E8=B0=83=E8=AF=95=E8=83=BD?= =?UTF-8?q?=E5=8A=9B?= 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 fdde0b9..b3dbd2d 100644 --- a/action/action.go +++ b/action/action.go @@ -3,6 +3,7 @@ package action import ( "encoding/json" "fmt" + "log" "strconv" "sync" "time" @@ -69,6 +70,7 @@ func (am *actionManager) SendMsg(reply *model.Reply) error { } func (am *actionManager) SendForward(reply *model.Reply) error { + log.Println(reply) am.sendMtx.Lock() defer am.sendMtx.Unlock() userID := strconv.FormatInt(reply.FromMsg.UserId, 10)