diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-20 11:44:55 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-20 11:44:55 +0530 |
commit | 7b2c3f47c6b586a208655fcfc716bba3f8619d1e (patch) | |
tree | 5e46cf9a1dc7adb8cd8d87f8faae97a5b57fe1b3 /yt_dlp/extractor/generic.py | |
parent | 8aa0e7cd96a1e2f315d49744793ae07f6543ce4c (diff) | |
download | hypervideo-pre-7b2c3f47c6b586a208655fcfc716bba3f8619d1e.tar.lz hypervideo-pre-7b2c3f47c6b586a208655fcfc716bba3f8619d1e.tar.xz hypervideo-pre-7b2c3f47c6b586a208655fcfc716bba3f8619d1e.zip |
[cleanup] Misc
Diffstat (limited to 'yt_dlp/extractor/generic.py')
-rw-r--r-- | yt_dlp/extractor/generic.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index 845ce5298..b8c5be7a0 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -3116,6 +3116,7 @@ class GenericIE(InfoExtractor): wistia_urls = WistiaIE._extract_urls(webpage) if wistia_urls: playlist = self.playlist_from_matches(wistia_urls, video_id, video_title, ie=WistiaIE.ie_key()) + playlist['entries'] = list(playlist['entries']) for entry in playlist['entries']: entry.update({ '_type': 'url_transparent', |