1 #808

Merged
chenhao merged 1 commits from BUG-20241119 into test 2024-11-19 15:57:14 +08:00
1 changed files with 3 additions and 5 deletions

View File

@ -2249,9 +2249,7 @@ 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,
Status: goproto.Int64(consts.Moment_Auditing),
},
})
if err == qmgo.ErrNoSuchDocuments {
@ -2285,7 +2283,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),
}