diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2022-11-06 19:05:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-06 19:05:09 +0000 |
commit | 96b9e9cf62c81b005242da418f092e45709a5123 (patch) | |
tree | fbb4583fe9d5a101bfba5afb17f839cd34b2feb7 /yt_dlp/utils.py | |
parent | cb1553e96601e92765dd8d70d549b8d551191e70 (diff) | |
download | hypervideo-pre-96b9e9cf62c81b005242da418f092e45709a5123.tar.lz hypervideo-pre-96b9e9cf62c81b005242da418f092e45709a5123.tar.xz hypervideo-pre-96b9e9cf62c81b005242da418f092e45709a5123.zip |
[extractor/telegram] Add playlist support and more metadata (#5358)
Authored by: bashonly, bsun0000
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r-- | yt_dlp/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index cfc7ba63a..84a8ecd6e 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -3092,8 +3092,8 @@ def escape_url(url): ).geturl() -def parse_qs(url): - return urllib.parse.parse_qs(urllib.parse.urlparse(url).query) +def parse_qs(url, **kwargs): + return urllib.parse.parse_qs(urllib.parse.urlparse(url).query, **kwargs) def read_batch_urls(batch_fd): |