This commit is contained in:
withchao 2023-01-12 17:20:28 +08:00
parent 56d4064b90
commit 0f4170907f

View File

@ -740,7 +740,8 @@ func (s *groupServer) GroupApplicationResponse(ctx context.Context, req *pbGroup
} else if req.HandleResult == constant.GroupResponseRefuse { } else if req.HandleResult == constant.GroupResponseRefuse {
chat.GroupApplicationRejectedNotification(req) chat.GroupApplicationRejectedNotification(req)
} else { } else {
return nil, utils.Wrap(constant.ErrArgs, "") //return nil, utils.Wrap(constant.ErrArgs, "")
return nil, constant.ErrArgs.Warp()
} }
return resp, nil return resp, nil
} }