|  | @@ -288,9 +288,9 @@ public class ContentServiceImpl implements ContentService {
 | 
	
		
			
				|  |  |              CrawlerVideoExample example = new CrawlerVideoExample();
 | 
	
		
			
				|  |  |              example.setOrderByClause("score desc");
 | 
	
		
			
				|  |  |              example.createCriteria().andDownloadStatusEqualTo(2)
 | 
	
		
			
				|  |  | +                    .andContentIdEqualTo(publishContent.getSourceId())
 | 
	
		
			
				|  |  |                      .andStatusEqualTo(1)
 | 
	
		
			
				|  |  | -                    .andIsIllegalEqualTo(0)
 | 
	
		
			
				|  |  | -                    .andContentIdEqualTo(publishContent.getSourceId());
 | 
	
		
			
				|  |  | +                    .andIsIllegalEqualTo(0);
 | 
	
		
			
				|  |  |              List<CrawlerVideo> crawlerVideoList = crawlerVideoMapper.selectByExample(example);
 | 
	
		
			
				|  |  |              List<CrawlerVideo> videoList = new ArrayList<>();
 | 
	
		
			
				|  |  |              if (!CollectionUtils.isEmpty(crawlerVideoList)) {
 |