|  | @@ -255,13 +255,12 @@ public class ContentServiceImpl implements ContentService {
 | 
	
		
			
				|  |  |              String platform = crawlerVideo.getPlatform();
 | 
	
		
			
				|  |  |              String userId = crawlerVideo.getUserId();
 | 
	
		
			
				|  |  |              String traceId = matchVideo.getTraceId();
 | 
	
		
			
				|  |  | -            String kimiTitle;
 | 
	
		
			
				|  |  |              LongArticlesText kimiText = kimiService.getKimiText(crawlerVideo.getContentId());
 | 
	
		
			
				|  |  | -            if (kimiText != null && StringUtils.isNotEmpty(kimiText.getKimiTitle())) {
 | 
	
		
			
				|  |  | -                kimiTitle = kimiText.getKimiTitle();
 | 
	
		
			
				|  |  | -            } else {
 | 
	
		
			
				|  |  | -                kimiTitle = crawlerVideo.getVideoTitle();
 | 
	
		
			
				|  |  | +            if (kimiText == null || StringUtils.isEmpty(kimiText.getKimiTitle())) {
 | 
	
		
			
				|  |  | +                log.error("crawlerVideo kimiText is null contentId={}", crawlerVideo.getContentId());
 | 
	
		
			
				|  |  | +                continue;
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  | +            String kimiTitle = kimiText.getKimiTitle();
 | 
	
		
			
				|  |  |              VideoDetail videoDetail = videoService.publish(videoOssPath, userId, kimiTitle);
 | 
	
		
			
				|  |  |              if (videoDetail == null) {
 | 
	
		
			
				|  |  |                  continue;
 |