From eae9e4ce08a69a8dd2f9efc4abfcf2ff3bb90f23 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Wed, 9 Apr 2025 23:39:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=20MsgInHandler=20?= =?UTF-8?q?=E5=87=BD=E6=95=B0=E7=9A=84=E8=BF=94=E5=9B=9E=E5=80=BC=E4=B8=BA?= =?UTF-8?q?=20nil=EF=BC=8C=E4=BB=A5=E7=A1=AE=E4=BF=9D=E5=9C=A8=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E5=9B=9E=E5=A4=8D=E6=B6=88=E6=81=AF=E6=97=B6=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E7=A9=BA=E5=80=BC=EF=BC=8C=E6=8F=90=E5=8D=87=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=9A=84=E6=B8=85=E6=99=B0=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/handler.go b/handler/handler.go index 31ac070..7a2cce1 100644 --- a/handler/handler.go +++ b/handler/handler.go @@ -144,7 +144,7 @@ func MsgInHandler(msg model.Message) (reply *model.Reply) { if !msg.GroupInfo.IsGroupMsg && privateAllHandler != nil { return privateAllHandler(msg) } - return &model.Reply{} + return nil } func RegisterHelpInform(triggerName string, category string, inform string) {