diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-07 03:29:19 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-07 03:30:30 +0530 |
commit | 43aebb7db45c346f0285d4b3bd50227dd3397416 (patch) | |
tree | 71c2ae67d397b9023d6ec9dc7d3836d510d82a31 /yt_dlp/extractor/heise.py | |
parent | 061a17abd3589555feeafd8f53dd9ad969ff36f1 (diff) |
Bugfix for bfd973ece3369c593b5e82a88cc16de80088a73e
`_extract_embed_urls` is not a list
Closes #4581
Diffstat (limited to 'yt_dlp/extractor/heise.py')
-rw-r--r-- | yt_dlp/extractor/heise.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/heise.py b/yt_dlp/extractor/heise.py index a80eaaf81..4f689c6e4 100644 --- a/yt_dlp/extractor/heise.py +++ b/yt_dlp/extractor/heise.py @@ -121,7 +121,7 @@ class HeiseIE(InfoExtractor): if kaltura_id: return _make_kaltura_result('kaltura:2238431:%s' % kaltura_id) - yt_urls = YoutubeIE._extract_embed_urls(url, webpage) + yt_urls = tuple(YoutubeIE._extract_embed_urls(url, webpage)) if yt_urls: return self.playlist_from_matches( yt_urls, video_id, title, ie=YoutubeIE.ie_key()) |