| 
					
				 | 
			
			
				@@ -415,9 +415,6 @@ public class CoreServiceImpl implements CoreService { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 if (articleSortResponse == null || articleSortResponse.getData() == null) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     continue; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                if (CollectionUtils.isEmpty(articleSortResponse.getData().getRank_list())) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    continue; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 ArticleSortResponseData data = articleSortResponse.getData(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 if (!CollectionUtils.isEmpty(data.getFilter_list())) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     List<FilterSortContentParam> list = new ArrayList<>(); 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -431,6 +428,10 @@ public class CoreServiceImpl implements CoreService { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     param.setFilterSortContentList(list); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     aigcService.filterSortContents(param); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                if (CollectionUtils.isEmpty(articleSortResponse.getData().getRank_list()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                        || articleSortResponse.getData().getRank_list().size() < planAccount.getPublishPreMinNum()) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    continue; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 //排序结束 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 rankList = data.getRank_list(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } else { 
			 |