Merge pull request '1' (#808) from BUG-20241119 into test
Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/808
This commit is contained in:
commit
df682d599b
|
@ -2389,10 +2389,8 @@ func (s *Service) ApiUpdateMoment(ctx *gin.Context, req *momentproto.ApiUpdateRe
|
|||
|
||||
err := _DefaultMoment.OpUpdate(ctx, &momentproto.OpUpdateReq{
|
||||
Moment: &dbstruct.Moment{
|
||||
Id: req.Moment.Id,
|
||||
Status: req.Status,
|
||||
Text: req.Text,
|
||||
MediaComp: req.MediaComp,
|
||||
Id: req.Moment.Id,
|
||||
Status: goproto.Int64(consts.Moment_Auditing),
|
||||
},
|
||||
})
|
||||
if err == qmgo.ErrNoSuchDocuments {
|
||||
|
@ -2426,7 +2424,7 @@ func (s *Service) ApiUpdateMoment(ctx *gin.Context, req *momentproto.ApiUpdateRe
|
|||
if len(imageaudittasks) > 0 || len(textaudittasks) > 0 || len(videomoderationtasks) > 0 {
|
||||
// 封装动态审核任务
|
||||
momentAuditTask := &dbstruct.MomentAuditTask{
|
||||
AssociativeTableId: goproto.String(fmt.Sprint(util.DerefInt64(req.Moment.Id))),
|
||||
AssociativeTableId: goproto.String(fmt.Sprint(req.Moment.GetId())),
|
||||
ManuallyReviewStatus: goproto.Int64(consts.MomentManuallyReview_Waiting),
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue