mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 08:53:13 +05:30
Rename "items_without_cate_items" to reflect usage
This commit is contained in:
parent
ae30f32c36
commit
57c63f3598
@ -234,18 +234,18 @@ def process_search_query(query, page, user, region)
|
|||||||
|
|
||||||
# Light processing to flatten search results out of Categories.
|
# Light processing to flatten search results out of Categories.
|
||||||
# They should ideally be supported in the future.
|
# They should ideally be supported in the future.
|
||||||
items_without_cate_items = [] of SearchItem | ChannelVideo
|
items_without_category = [] of SearchItem | ChannelVideo
|
||||||
items.each do |i|
|
items.each do |i|
|
||||||
if i.is_a? Category
|
if i.is_a? Category
|
||||||
i.contents.each do |nest_i|
|
i.contents.each do |nest_i|
|
||||||
if !nest_i.is_a? Video
|
if !nest_i.is_a? Video
|
||||||
items_without_cate_items << nest_i
|
items_without_category << nest_i
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
items_without_cate_items << i
|
items_without_category << i
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
{search_query, items_without_cate_items.size, items_without_cate_items, url_params}
|
{search_query, items_without_category.size, items_without_category, url_params}
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user