fix:op主播昵称审核

This commit is contained in:
wangxinyu 2024-12-25 11:39:44 +08:00
parent c5a9102063
commit 38af424c26
1 changed files with 1 additions and 1 deletions

View File

@ -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()]