mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-04 08:39:49 +01:00
if case for sectionListRenderer
This commit is contained in:
parent
0c64a86ebe
commit
246955b68a
@ -435,7 +435,8 @@ private module Extractors
|
|||||||
raw_items = [] of JSON::Any
|
raw_items = [] of JSON::Any
|
||||||
content = extract_selected_tab(target["tabs"])["content"]
|
content = extract_selected_tab(target["tabs"])["content"]
|
||||||
|
|
||||||
content["sectionListRenderer"]["contents"].as_a.each do |renderer_container|
|
if section_list_contents = content.dig?("sectionListRenderer", "contents")
|
||||||
|
section_list_contents.as_a.each do |renderer_container|
|
||||||
renderer_container_contents = renderer_container["itemSectionRenderer"]["contents"][0]
|
renderer_container_contents = renderer_container["itemSectionRenderer"]["contents"][0]
|
||||||
|
|
||||||
# Category extraction
|
# Category extraction
|
||||||
@ -451,6 +452,7 @@ private module Extractors
|
|||||||
raw_items << item
|
raw_items << item
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return raw_items
|
return raw_items
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user