From d78e74f6fa425646a4af5f193de14aee6f1f64dc Mon Sep 17 00:00:00 2001 From: hujiebin Date: Fri, 24 Mar 2023 18:10:00 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E9=94=99=E4=BD=8D=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- route/group_r/group_op.go | 2 +- route/group_r/group_setting.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/route/group_r/group_op.go b/route/group_r/group_op.go index cb9109d..bb62b80 100644 --- a/route/group_r/group_op.go +++ b/route/group_r/group_op.go @@ -993,7 +993,7 @@ func AddPermanentMember(c *gin.Context) (*mycontext.MyContext, error) { isInvite = 0 } - userId, externalId, _, nick, avatar, err := req.GetUserEx(c, myContext) + userId, externalId, nick, avatar, _, err := req.GetUserEx(c, myContext) if err != nil { return myContext, err } diff --git a/route/group_r/group_setting.go b/route/group_r/group_setting.go index e6e63de..37345e1 100644 --- a/route/group_r/group_setting.go +++ b/route/group_r/group_setting.go @@ -190,7 +190,7 @@ func SetGroupRole(c *gin.Context) (*mycontext.MyContext, error) { } } - userId, myExtId, _, nick, avatar, err := req.GetUserEx(c, myContext) + userId, myExtId, nick, avatar, _, err := req.GetUserEx(c, myContext) if err != nil { return myContext, err } @@ -423,7 +423,7 @@ func AddGroupBlacklist(c *gin.Context) (*mycontext.MyContext, error) { blackImei = false } - userId, myExtId, _, nick, avatar, err := req.GetUserEx(c, myContext) + userId, myExtId, nick, avatar, _, err := req.GetUserEx(c, myContext) if err != nil { return myContext, err } -- 2.22.0