1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-30 11:32:50 +08:00

Merge pull request #273 from ytdl-org/master

[pull] master from ytdl-org:master
This commit is contained in:
pull[bot]
2020-02-29 19:04:55 +00:00
committed by GitHub
Unverified
+1 -1
View File
@@ -135,7 +135,7 @@ class TelecincoIE(InfoExtractor):
display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id)
article = self._parse_json(self._search_regex(
r'window\.\$REACTBASE_STATE\.article\s*=\s*({.+})',
r'window\.\$REACTBASE_STATE\.article(?:_multisite)?\s*=\s*({.+})',
webpage, 'article'), display_id)['article']
title = article.get('title')
description = clean_html(article.get('leadParagraph'))