Browse Source

[extractor/common] Skip malformed ISM manifest XMLs while extracting ISM formats (#24667)

master
Sergey M․ 4 years ago
parent
commit
13b08034b5
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      youtube_dl/extractor/common.py

+ 2
- 0
youtube_dl/extractor/common.py View File

@ -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)


Loading…
Cancel
Save