Browse Source
[extractor/common] Skip malformed ISM manifest XMLs while extracting ISM formats (#24667)
master
Sergey M․
5 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
2 additions and
0 deletions
-
youtube_dl/extractor/common.py
|
|
@ -2340,6 +2340,8 @@ class InfoExtractor(object): |
|
|
|
if res is False: |
|
|
|
return [] |
|
|
|
ism_doc, urlh = res |
|
|
|
if ism_doc is None: |
|
|
|
return [] |
|
|
|
|
|
|
|
return self._parse_ism_formats(ism_doc, urlh.geturl(), ism_id) |
|
|
|
|
|
|
|