mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Merge pull request #3249 from iv-org/improve-extractor
This commit is contained in:
commit
9cc0418769
1 changed files with 14 additions and 12 deletions
|
@ -435,7 +435,8 @@ private module Extractors
|
|||
raw_items = [] of JSON::Any
|
||||
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]
|
||||
|
||||
# Category extraction
|
||||
|
@ -451,6 +452,7 @@ private module Extractors
|
|||
raw_items << item
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return raw_items
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue