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~") } })