about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-01-27 23:23:36 +0700
committerSergey M․ <dstftw@gmail.com>2018-01-27 23:24:38 +0700
commit3931b84597c3de013ab9ec3455dbcdaf568871e2 (patch)
treeadbacc426a3945f3e9e288fcf586eeb74bed4809
parenta0ee342b50f8fac4663a1d4d3822f5879caf398a (diff)
downloadyoutube-dl-3931b84597c3de013ab9ec3455dbcdaf568871e2.tar.gz
youtube-dl-3931b84597c3de013ab9ec3455dbcdaf568871e2.tar.xz
youtube-dl-3931b84597c3de013ab9ec3455dbcdaf568871e2.zip
[extractor/common] Improve _json_ld for articles
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index a072e9bc9..deafb4850 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1027,7 +1027,7 @@ class InfoExtractor(object):
                     part_of_series = e.get('partOfSeries') or e.get('partOfTVSeries')
                     if isinstance(part_of_series, dict) and part_of_series.get('@type') in ('TVSeries', 'Series', 'CreativeWorkSeries'):
                         info['series'] = unescapeHTML(part_of_series.get('name'))
-                elif item_type == 'Article':
+                elif item_type in ('Article', 'NewsArticle'):
                     info.update({
                         'timestamp': parse_iso8601(e.get('datePublished')),
                         'title': unescapeHTML(e.get('headline')),