[cda] Fix extraction (closes #13935)

This commit is contained in:
Yen Chi Hsuan 2017-08-19 21:44:47 +08:00
parent 95f3f7c20a
commit f8f18f332f
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
version <unreleased>
Core
* [cda] Fix extraction (closes #13935)
* [utils] Fix unescapeHTML for misformed string like "&a&quot;" (#13935)

View File

@ -124,7 +124,7 @@ class CDAIE(InfoExtractor):
}
def extract_format(page, version):
json_str = self._search_regex(
json_str = self._html_search_regex(
r'player_data=(\\?["\'])(?P<player_data>.+?)\1', page,
'%s player_json' % version, fatal=False, group='player_data')
if not json_str: