From 3ae333e0479e589e925afb18a6271160c210b1b6 Mon Sep 17 00:00:00 2001 From: Kanri Date: Mon, 6 Sep 2021 14:58:04 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E7=A2=A7=E6=B2=B9=E9=B8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin_qingyunke/request.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugin_qingyunke/request.go b/plugin_qingyunke/request.go index ac08d699..9c4c6bfa 100644 --- a/plugin_qingyunke/request.go +++ b/plugin_qingyunke/request.go @@ -1,6 +1,5 @@ package qingyunke - import ( zero "github.com/wdvxdr1123/ZeroBot" ) @@ -9,11 +8,9 @@ import ( func init() { zero.OnRequest().SetBlock(false).FirstPriority().Handle(func(ctx *zero.Ctx) { if ctx.Event.RequestType == "friend" { - log.Println("加好友") ctx.SetFriendAddRequest(ctx.Event.Flag, true, "") } if ctx.Event.RequestType == "group" && ctx.Event.SubType == "invite" { - log.Println("加群") ctx.SetGroupAddRequest(ctx.Event.Flag, "invite", true, "我爱你,mua~") } })