1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-13 16:49:34 +00:00

[cbsnews] Fix extraction for python <3.6 (closes #23359)

This commit is contained in:
Sergey M․ 2021-04-17 05:05:31 +07:00
parent 596b26606c
commit 9f6c03a006
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -26,7 +26,7 @@ class CBSNewsEmbedIE(CBSIE):
def _real_extract(self, url):
item = self._parse_json(zlib.decompress(compat_b64decode(
compat_urllib_parse_unquote(self._match_id(url))),
-zlib.MAX_WBITS), None)['video']['items'][0]
-zlib.MAX_WBITS).decode('utf-8'), None)['video']['items'][0]
return self._extract_video_info(item['mpxRefId'], 'cbsnews')