mirror of
https://github.com/iv-org/invidious.git
synced 2024-10-01 01:25:56 -04:00
Fix extracting for mixes provided by YouTube Music
This commit is contained in:
parent
4933cd46d7
commit
f85472c0ce
@ -43,8 +43,10 @@ def fetch_mix(rdid, video_id, cookies = nil, locale = nil)
|
|||||||
mix_title = playlist["title"].as_s
|
mix_title = playlist["title"].as_s
|
||||||
|
|
||||||
contents = playlist["contents"].as_a
|
contents = playlist["contents"].as_a
|
||||||
until contents[0]["playlistPanelVideoRenderer"]["videoId"].as_s == video_id
|
if contents.map { |video| video["playlistPanelVideoRenderer"]["videoId"] }.includes? video_id
|
||||||
contents.shift
|
until contents[0]["playlistPanelVideoRenderer"]["videoId"].as_s == video_id
|
||||||
|
contents.shift
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
videos = [] of MixVideo
|
videos = [] of MixVideo
|
||||||
|
Loading…
Reference in New Issue
Block a user