|
@@ -117,7 +117,7 @@ public class AiBytedanceAdvertiserStrategyServiceImpl extends ServiceImpl<AiByte
|
|
if ("video".equalsIgnoreCase(video.getMaterialType())){
|
|
if ("video".equalsIgnoreCase(video.getMaterialType())){
|
|
//视频是否是低质视频,为1跳过
|
|
//视频是否是低质视频,为1跳过
|
|
Integer isLowQuality = bytedanceMaterialRejectReasonMapper.getIsLowQualityByVideoId(video.getVid());
|
|
Integer isLowQuality = bytedanceMaterialRejectReasonMapper.getIsLowQualityByVideoId(video.getVid());
|
|
- if(1 == isLowQuality){
|
|
|
|
|
|
+ if(!Check.isNull(isLowQuality) && 1 == isLowQuality){
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
}
|