mirror of
https://github.com/iv-org/invidious
synced 2024-11-24 12:03:26 +01:00
Support empty categories
This commit is contained in:
parent
e3054ccdd2
commit
b49b5fbda9
@ -321,13 +321,15 @@ private module Parsers
|
|||||||
content_container = item_contents["contents"]
|
content_container = item_contents["contents"]
|
||||||
end
|
end
|
||||||
|
|
||||||
raw_contents = content_container["items"].as_a
|
raw_contents = content_container["items"]?.try &.as_a
|
||||||
|
if !raw_contents.nil?
|
||||||
raw_contents.each do |item|
|
raw_contents.each do |item|
|
||||||
result = extract_item(item)
|
result = extract_item(item)
|
||||||
if !result.nil?
|
if !result.nil?
|
||||||
contents << result
|
contents << result
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
Category.new({
|
Category.new({
|
||||||
title: title,
|
title: title,
|
||||||
|
Loading…
Reference in New Issue
Block a user