Fix missing search results in extraction

This commit is contained in:
syeopite 2021-06-25 18:59:27 -07:00
parent 37db83a94e
commit abda6840d5
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82
1 changed files with 8 additions and 3 deletions

View File

@ -332,10 +332,15 @@ private class SearchResultsExtractor < ItemsContainerExtractor
end
private def extract(target)
raw_items = [] of JSON::Any
raw_items = [] of Array(JSON::Any)
content = target["primaryContents"]
renderer = content["sectionListRenderer"]["contents"].as_a[0]["itemSectionRenderer"]
raw_items = renderer["contents"].as_a
renderer = content["sectionListRenderer"]["contents"].as_a.each do |node|
if node = node["itemSectionRenderer"]?
raw_items << node["contents"].as_a
end
end
raw_items = raw_items.flatten
return SearchResults.new({contents: raw_items})
end