by Robin at 20240229; fix

This commit is contained in:
Leufolium 2024-02-29 02:05:10 +08:00
parent 42f56872b9
commit eec07ab1d7
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ func (s *Service) CreateUpdateStreamerImageAudit(ctx *gin.Context, oldStreamer *
func (s *Service) CreateMomentImageAudit(ctx *gin.Context, newMoment *dbstruct.Moment) (tasks []*dbstruct.ImageAuditTask) {
if newMoment.MediaComp != nil && newMoment.MediaComp.ImageIds != nil {
if newMoment.MediaComp != nil && len(newMoment.MediaComp.GetImageIds()) > 0 {
tasks = append(tasks, &dbstruct.ImageAuditTask{
RouteUrl: goproto.String(ctx.Request.URL.Path),
AssociativeDatabase: goproto.String("moment"),