mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 20:51:56 +00:00 
			
		
		
		
	Change behavior of categories in search results
This commit is contained in:
		| @@ -231,11 +231,16 @@ def process_search_query(url_params, query, page, user, region) | ||||
|     count, items = search(search_query, search_params, region).as(Tuple) | ||||
|   end | ||||
|  | ||||
|   # Light processing to ignore extracted items from categories for now. | ||||
|   # They should ideally be supported in the frontend in the future | ||||
|   # Light processing to flatten search results out of Categories. | ||||
|   # They should ideally be supported in the future. | ||||
|   items_without_cate_items = [] of SearchItem | ChannelVideo | ||||
|   items.each do |i| | ||||
|     if i.is_a? Category | ||||
|       i.contents.each do |nest_i| | ||||
|         if !nest_i.is_a? Video | ||||
|           items_without_cate_items << nest_i | ||||
|         end | ||||
|       end | ||||
|     else | ||||
|       items_without_cate_items << i | ||||
|     end | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syeopite
					syeopite