|
@@ -1060,7 +1060,7 @@ public class CoreServiceImpl implements CoreService {
|
|
|
continue;
|
|
continue;
|
|
|
}
|
|
}
|
|
|
VideoDetail videoDetail = VideoUtils.getVideoDetail(matchResult.getMatchVideoId());
|
|
VideoDetail videoDetail = VideoUtils.getVideoDetail(matchResult.getMatchVideoId());
|
|
|
- if (videoDetail == null) {
|
|
|
|
|
|
|
+ if (videoDetail == null || StringUtils.isEmpty(videoDetail.getTitle())) {
|
|
|
log.warn("getVideoDetail null for matchVideoId={}", matchResult.getMatchVideoId());
|
|
log.warn("getVideoDetail null for matchVideoId={}", matchResult.getMatchVideoId());
|
|
|
continue;
|
|
continue;
|
|
|
}
|
|
}
|
|
@@ -1139,7 +1139,7 @@ public class CoreServiceImpl implements CoreService {
|
|
|
continue;
|
|
continue;
|
|
|
}
|
|
}
|
|
|
VideoDetail videoDetail = VideoUtils.getVideoDetail(record.getVideoId());
|
|
VideoDetail videoDetail = VideoUtils.getVideoDetail(record.getVideoId());
|
|
|
- if (videoDetail == null) {
|
|
|
|
|
|
|
+ if (videoDetail == null || StringUtils.isEmpty(videoDetail.getTitle())) {
|
|
|
log.warn("getVideoDetail null for videoId={}", record.getVideoId());
|
|
log.warn("getVideoDetail null for videoId={}", record.getVideoId());
|
|
|
continue;
|
|
continue;
|
|
|
}
|
|
}
|