mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix map for recommended videos
This commit is contained in:
parent
90249cdafa
commit
86491da253
1 changed files with 2 additions and 5 deletions
|
@ -706,11 +706,6 @@ struct Video
|
||||||
return audio_streams
|
return audio_streams
|
||||||
end
|
end
|
||||||
|
|
||||||
def recommended_videos
|
|
||||||
@recommended_json = JSON.parse(@info["recommended_videos"]) if !@recommended_json
|
|
||||||
@recommended_json.not_nil!
|
|
||||||
end
|
|
||||||
|
|
||||||
def player_response
|
def player_response
|
||||||
@player_json = JSON.parse(@info["player_response"]) if !@player_json
|
@player_json = JSON.parse(@info["player_response"]) if !@player_json
|
||||||
@player_json.not_nil!
|
@player_json.not_nil!
|
||||||
|
@ -1123,6 +1118,8 @@ def extract_player_config(body, html)
|
||||||
else
|
else
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
rv
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
params["rvs"] = (rvs.map &.to_s).join(",")
|
params["rvs"] = (rvs.map &.to_s).join(",")
|
||||||
|
|
Loading…
Reference in a new issue