From 38af424c26b2959166326a24d8027f6f05a426bf Mon Sep 17 00:00:00 2001 From: wangxinyu Date: Wed, 25 Dec 2024 11:39:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:op=E4=B8=BB=E6=92=AD=E6=98=B5=E7=A7=B0?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/mix/service/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mix/service/service.go b/app/mix/service/service.go index 8d91c9ec..09c282bb 100644 --- a/app/mix/service/service.go +++ b/app/mix/service/service.go @@ -3338,7 +3338,7 @@ func (s *Service) OpGetTextAuditTaskVOList(ctx *gin.Context, req *textaudittaskp } // 主播昵称审核 - if util.DerefInt64(req.Role) == consts.Streamer { + if req.Role != nil && *req.Role == consts.Streamer { filterVoList := make([]*textaudittaskproto.TextAuditTaskVO, 0) for _, vo := range volist { account := acctMp[vo.GetMid()]