소스 검색

fix visit list nil point

master
shenjiachi 3 일 전
부모
커밋
19456506a0
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      app/svc/advertising/svc_list.go

+ 3
- 1
app/svc/advertising/svc_list.go 파일 보기

@@ -67,7 +67,9 @@ func VisitList(c *gin.Context) {
e.OutErr(c, e.ERR_DB_ORM, err.Error())
return
}
uid = utils.Int64ToStr(user.Id)
if user != nil {
uid = utils.Int64ToStr(user.Id)
}
}
req.Platform = strings.ReplaceAll(req.Platform, " ", "")
req.Type = strings.ReplaceAll(req.Type, " ", "")


불러오는 중...
취소
저장