mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix extractor for short_view_count_text
This commit is contained in:
parent
7c75111c41
commit
90249cdafa
1 changed files with 7 additions and 6 deletions
|
@ -1113,14 +1113,15 @@ def extract_player_config(body, html)
|
||||||
.try &.["results"]?
|
.try &.["results"]?
|
||||||
.try &.as_a
|
.try &.as_a
|
||||||
|
|
||||||
rvs = extract_recommended(rvs)
|
rvs = extract_recommended(rvs).compact_map do |rv|
|
||||||
rvs.each_with_index do |rv, i|
|
if !rv["short_view_count_text"]?
|
||||||
if !rv["view_count"]?
|
|
||||||
rv_params = rvs_params.select { |rv_params| rv_params["id"]? == (rv["id"]? || "") }[0]?
|
rv_params = rvs_params.select { |rv_params| rv_params["id"]? == (rv["id"]? || "") }[0]?
|
||||||
if rv_params
|
|
||||||
rvs[i]["short_view_count_text"] = rv_params["short_view_count_text"]
|
if rv_params.try &.["short_view_count_text"]?
|
||||||
|
rv["short_view_count_text"] = rv_params.not_nil!["short_view_count_text"]
|
||||||
|
rv
|
||||||
else
|
else
|
||||||
rvs.delete_at(i)
|
nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue