fix: kick group member callback (#2643)

* fix: kill group member callback

* fix: change port

* fix: change port
This commit is contained in:
icey-yu
2024-09-23 17:12:11 +08:00
committed by GitHub
parent c0eaa1c166
commit 6add09d476
4 changed files with 4 additions and 3 deletions
+1
View File
@@ -218,6 +218,7 @@ func (s *groupServer) webhookAfterKickGroupMember(ctx context.Context, after *co
CallbackCommand: callbackstruct.CallbackAfterKickGroupCommand,
GroupID: req.GroupID,
KickedUserIDs: req.KickedUserIDs,
Reason: req.Reason,
}
s.webhookClient.AsyncPost(ctx, cbReq.GetCallbackCommand(), cbReq, &callbackstruct.CallbackKillGroupMemberResp{}, after)
}