mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Add description_html field to Category
(cherry picked from commit aa8f15f795
)
This commit is contained in:
parent
ea6434662d
commit
7b60dac526
2 changed files with 5 additions and 0 deletions
|
@ -256,6 +256,9 @@ private class CategoryParser < ItemParser
|
|||
badges << {badge["style"].as_s, badge["label"].as_s}
|
||||
end
|
||||
|
||||
# Category description
|
||||
description_html = item_contents["subtitle"]?.try { |desc| parse_content(desc) } || ""
|
||||
|
||||
# Content parsing
|
||||
contents = [] of SearchItem
|
||||
|
||||
|
@ -278,6 +281,7 @@ private class CategoryParser < ItemParser
|
|||
Category.new({
|
||||
title: title,
|
||||
contents: contents,
|
||||
description_html: description_html,
|
||||
browse_endpoint_data: browse_endpoint_data,
|
||||
badges: badges,
|
||||
})
|
||||
|
|
|
@ -232,6 +232,7 @@ class Category
|
|||
property title : String
|
||||
property contents : Array(SearchItem)
|
||||
property browse_endpoint_data : String?
|
||||
property description_html : String
|
||||
property badges : Array(Tuple(String, String))?
|
||||
|
||||
def to_json(locale, json : JSON::Builder)
|
||||
|
|
Loading…
Reference in a new issue