|
@@ -280,6 +280,12 @@ public class ContentServiceImpl implements ContentService {
|
|
|
List<VideoDetail> videoDetails = publishVideo(contentMiniVideos, matchVideo, publishContent);
|
|
|
log.info("getPublishVideoDetail videoDetails={}", videoDetails);
|
|
|
if (CollectionUtils.isEmpty(videoDetails)) {
|
|
|
+ MatchMiniprogramStatusParam statusParam = new MatchMiniprogramStatusParam();
|
|
|
+ statusParam.setStatus(MatchResultStatusEnum.FAIL.getStatusCode());
|
|
|
+ statusParam.setPublishContentId(publishContent.getPublishContentId());
|
|
|
+ statusParam.setErrorMsg("小程序为空");
|
|
|
+ aigcService.updateMatchMiniprogramStatus(statusParam);
|
|
|
+ matchService.notHasMiniVideos(publishContent.getSourceId());
|
|
|
LarkRobotUtil.sendMessage("发布后小程序为空 matchVideo.getContentId=" + matchVideo.getContentId());
|
|
|
return new ArrayList<>();
|
|
|
}
|