1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-16 06:17:27 +00:00

Force evaluation

This commit is contained in:
Zenon Mousmoulas 2021-11-10 07:34:16 +02:00
parent f561e0d817
commit 6880bf4334

View File

@ -3201,7 +3201,7 @@ class GenericIE(InfoExtractor):
rutube_urls, video_id, video_title, ie=RutubeIE.ie_key()) rutube_urls, video_id, video_title, ie=RutubeIE.ie_key())
# Look for Glomex embeds # Look for Glomex embeds
glomex_urls = GlomexEmbedIE._extract_urls(webpage, url) glomex_urls = list(GlomexEmbedIE._extract_urls(webpage, url))
if glomex_urls: if glomex_urls:
return self.playlist_from_matches( return self.playlist_from_matches(
glomex_urls, video_id, video_title, ie=GlomexEmbedIE.ie_key()) glomex_urls, video_id, video_title, ie=GlomexEmbedIE.ie_key())