|
@@ -69,7 +69,7 @@ public class ArticleVideoAuditService {
|
|
|
return;
|
|
|
}
|
|
|
List<String> contentIds = list.stream().map(ArticleVideoAuditListVO::getContentId).collect(Collectors.toList());
|
|
|
- List<LongArticleCrawlerVideo> videoList = crawlerVideoRepository.getByContentIdInAndIsIllegal(contentIds, 0);
|
|
|
+ List<LongArticleCrawlerVideo> videoList = crawlerVideoRepository.getByContentIdIn(contentIds);
|
|
|
Map<String, List<LongArticleCrawlerVideo>> videoMap = videoList.stream()
|
|
|
.collect(Collectors.groupingBy(LongArticleCrawlerVideo::getContentId));
|
|
|
for (ArticleVideoAuditListVO item : list) {
|