diff options
author | coletdjnz <coletdjnz@protonmail.com> | 2022-09-30 14:02:20 +1300 |
---|---|---|
committer | coletdjnz <coletdjnz@protonmail.com> | 2022-09-30 14:02:20 +1300 |
commit | f1aae715684b8a2cd4ce5590373b49ba5030dba6 (patch) | |
tree | 5e7cb553b1cd960d4cf0560a00d408ff07ad6c30 | |
parent | a5642f2c4a212488ef4d103ae54ed01f6040adf2 (diff) | |
download | hypervideo-pre-f1aae715684b8a2cd4ce5590373b49ba5030dba6.tar.lz hypervideo-pre-f1aae715684b8a2cd4ce5590373b49ba5030dba6.tar.xz hypervideo-pre-f1aae715684b8a2cd4ce5590373b49ba5030dba6.zip |
[extractor/rcs] Fix embed extraction
Fixes https://github.com/yt-dlp/yt-dlp/issues/5076
Authored by: coletdjnz
-rw-r--r-- | yt_dlp/extractor/rcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/rcs.py b/yt_dlp/extractor/rcs.py index 28ba42eed..e6185fec7 100644 --- a/yt_dlp/extractor/rcs.py +++ b/yt_dlp/extractor/rcs.py @@ -337,7 +337,7 @@ class RCSEmbedsIE(RCSBaseIE): @classmethod def _extract_embed_urls(cls, url, webpage): - return cls._sanitize_urls(tuple(super()._extract_embed_urls(url, webpage))) + return cls._sanitize_urls(list(super()._extract_embed_urls(url, webpage))) class RCSIE(RCSBaseIE): |